Add new host

This commit is contained in:
SebastianStork 2024-03-22 22:28:42 +01:00
parent 57f4f7a7df
commit 943576db67
7 changed files with 155 additions and 1 deletions

View file

@ -7,6 +7,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-index-database = {
url = "github:Mic92/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
@ -36,6 +41,14 @@
./users/seb
];
};
seb-desktop = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {inherit inputs;};
modules = [
./hosts/seb-desktop
./users/seb
];
};
};
devShells.${system}.default = pkgs.mkShell {