diff --git a/flake.nix b/flake.nix index 61e51bc..1279639 100644 --- a/flake.nix +++ b/flake.nix @@ -71,6 +71,13 @@ ./hosts/muhhStar.nix ]; }; + ze = lib.nixosSystem { + inherit system; + modules = [ + sops-nix.nixosModules.sops + ./hosts/ze.nix + ]; + }; }; homeConfigurations = { diff --git a/hosts/ze.nix b/hosts/ze.nix index 2fc3b63..ae4536f 100644 --- a/hosts/ze.nix +++ b/hosts/ze.nix @@ -8,19 +8,7 @@ ./common.nix ]; - # Bootloader. - boot.loader.systemd-boot.enable = false; - boot.loader.grub = { - enable = true; - device = "nodev"; - efiSupport = true; - useOSProber = true; - }; - - boot.loader.efi.canTouchEfiVariables = true; - networking.hostName = "ze"; # Define your hostname. - # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # Configure network proxy if necessary # networking.proxy.default = "http://user:password@proxy:port/";