Copied home-xps13.nix to home-server.nix

This commit is contained in:
2025-08-20 09:21:10 -04:00
parent f8a93387f5
commit ecd8b1c9cf
2 changed files with 561 additions and 0 deletions

View File

@@ -54,5 +54,27 @@
}
];
};
nixosConfigurations.xps13 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit overlays; };
modules = [
{ nixpkgs.overlays = overlays; }
sops-nix.nixosModules.sops
./configuration.nix
home-manager.nixosModules.home-manager {
# home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.sharedModules = [ {nixpkgs.overlays = overlays;} ];
home-manager.users.th3r00t = {
imports = [
./home-server.nix
nix-index-database.homeModules.nix-index
];
};
# home-manager.users.th3r00t = import ./home.nix;
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
}
];
};
};
}