22 lines
350 B
Nix
22 lines
350 B
Nix
{ 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
|
|
];
|
|
}
|