blue: add skelet for blue host

This commit is contained in:
2023-09-07 10:57:18 +02:00
parent 55a2150b03
commit 2d8a742ed1
7 changed files with 45 additions and 81 deletions

View File

@@ -53,6 +53,22 @@
}
];
};
blue = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
{_module.args = inputs;}
./blue/configuration.nix
./blue/hardware-configuration.nix
./packages.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.akill = import ./home/home.nix;
}
];
};
};
devShell.x86_64-linux = pkgs.mkShell {