1
0
Fork 0

Compare commits

..

3 commits

2 changed files with 8 additions and 8 deletions

12
flake.lock generated
View file

@ -149,11 +149,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1755601933, "lastModified": 1753181343,
"narHash": "sha256-iXZeeYyfy8NdpvH/OOW9V3C2AfsXE+fzDHfrIOHBPF0=", "narHash": "sha256-CLQfNtUqirNVSYoW/kYbvL4PeeNasmZonaPnjO3+1YQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "8af2e064f93234ee79df8b9858eeefbf84394488", "rev": "0cdfcdbb525b77b951c889b6131047bc374f48fe",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -180,11 +180,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1755186698, "lastModified": 1752950548,
"narHash": "sha256-wNO3+Ks2jZJ4nTHMuks+cxAiVBGNuEBXsT29Bz6HASo=", "narHash": "sha256-NS6BLD0lxOrnCiEOcvQCDVPXafX1/ek1dfJHX1nUIzc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "fbcf476f790d8a217c3eab4e12033dc4a0f6d23c", "rev": "c87b95e25065c028d31a94f06a62927d18763fdf",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -17,14 +17,14 @@
outputs = { self, nixpkgs, home-manager, flake-utils, agenix, ... }@inputs: outputs = { self, nixpkgs, home-manager, flake-utils, agenix, ... }@inputs:
let inherit (self) outputs; let inherit (self) outputs;
in { in {
nixosConfigurations.minji = nixpkgs.lib.nixosSystem { nixosConfigurations.framework = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inputs = inputs; }; specialArgs = { inputs = inputs; };
modules = [ modules = [
home-manager.nixosModules.default home-manager.nixosModules.default
agenix.nixosModules.default agenix.nixosModules.default
./nix/hosts/common/sys.nix ./nix/hosts/common/sys.nix
./nix/hosts/minji/sys.nix ./nix/hosts/framework/sys.nix
]; ];
}; };