host | add w1

This commit is contained in:
Don Harper 2024-10-07 07:58:20 -05:00
parent c1aede0d5f
commit 322237a2b3
5 changed files with 239 additions and 0 deletions

19
hosts/w1/default.nix Normal file
View file

@ -0,0 +1,19 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
inputs.stylix.nixosModules.stylix
inputs.catppuccin.nixosModules.catppuccin
./hardware-configuration.nix
./network.nix
../server
../themes.nix
# ../server/searxng.nix
];
networking.hostName = "w1";
}