diff --git a/hosts/eden/default.nix b/hosts/eden/default.nix new file mode 100644 index 0000000..729150a --- /dev/null +++ b/hosts/eden/default.nix @@ -0,0 +1,35 @@ +# hosts/tatara/default.nix +{ + config, + lib, + pkgs, + ... +}: { + imports = [ + # Hardware configuration + ./hardware-configuration.nix + + # Common configurations + ../common/global + ../common/optional/docker.nix + ]; + + # Bootloader + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + # Networking + networking = { + hostName = "eden"; + networkmanager.enable = true; + useDHCP = lib.mkDefault true; + }; + + # User configuration + users.users.fabric = { + isNormalUser = true; + description = "fabric"; + extraGroups = ["networkmanager" "wheel" "docker"]; + shell = pkgs.zsh; + }; +}