hosts/hazel: init

This commit is contained in:
LavaDesu 2025-04-05 13:05:59 +11:00
parent 3502a31065
commit 4d751d72b3
Signed by: cilly
GPG key ID: 6500251E087653C9
8 changed files with 121 additions and 8 deletions

22
hosts/hazel/default.nix Normal file
View file

@ -0,0 +1,22 @@
{ modules, ... }: {
networking.hostName = "hazel";
system.stateVersion = "24.11";
time.timeZone = "Australia/Melbourne";
imports = with modules.system; [
home-manager
base
kernel
nix-stable
packages
security
./filesystem.nix
./kernel.nix
./networking.nix
./packages.nix
../../users/hana
];
}