hosts/dandelion: init

This commit is contained in:
LavaDesu 2024-03-13 16:00:37 +11:00
parent a1510113a5
commit d13a8e5cd4
Signed by: cilly
GPG key ID: 6500251E087653C9
7 changed files with 107 additions and 3 deletions

View file

@ -0,0 +1,24 @@
{ 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
];
}