flakes/hosts/dandelion/default.nix

25 lines
490 B
Nix
Raw Normal View History

2024-03-13 16:00:37 +11:00
{ config, inputs, modules, modulesPath, overlays, pkgs, ... }: {
networking.hostName = "dandelion";
system.stateVersion = "23.11";
time.timeZone = "Australia/Melbourne";
imports = with modules.system; [
(modulesPath + "/profiles/qemu-guest.nix")
inputs.home-manager-stable.nixosModule
base
home-manager
input
nix-stable
security
#wireguard
./filesystem.nix
./kernel.nix
./networking.nix
./packages.nix
../../users/hana
];
}