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

View file

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