diff --git a/hosts/bootstrap-vps/configuration.nix b/hosts/bootstrap-vps/configuration.nix deleted file mode 100644 index 0d98bc7..0000000 --- a/hosts/bootstrap-vps/configuration.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ ... }: -{ - sconfig.profile = "server"; - boot.loader.grub.enable = true; - boot.loader.grub.device = "/dev/vda"; - fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; -} diff --git a/hosts/bootstrap-vps/default.nix b/hosts/bootstrap-vps/default.nix deleted file mode 100644 index 165044d..0000000 --- a/hosts/bootstrap-vps/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - pkgs = "nixpkgs"; - system = "x86_64-linux"; - hardware = "qemu"; - module = ./configuration.nix; -} diff --git a/hosts/dev-cli/configuration.nix b/hosts/dev-cli/configuration.nix deleted file mode 100644 index a5a0448..0000000 --- a/hosts/dev-cli/configuration.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ ... }: -{ - sconfig.profile = "server"; - services.getty.autologinUser = "root"; - fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; - boot.loader.grub.device = "nodev"; -} diff --git a/hosts/dev-cli/default.nix b/hosts/dev-cli/default.nix deleted file mode 100644 index f659ab1..0000000 --- a/hosts/dev-cli/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - pkgs = "unstable"; - system = "x86_64-linux"; - hardware = "qemu"; - module = ./configuration.nix; -} diff --git a/hosts/dev-gui/configuration.nix b/hosts/dev-gui/configuration.nix deleted file mode 100644 index ced67ef..0000000 --- a/hosts/dev-gui/configuration.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ config, lib, ... }: -{ - imports = [ ../neo/configuration.nix ]; - services.getty.autologinUser = "root"; -} diff --git a/hosts/dev-gui/default.nix b/hosts/dev-gui/default.nix deleted file mode 100644 index f659ab1..0000000 --- a/hosts/dev-gui/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - pkgs = "unstable"; - system = "x86_64-linux"; - hardware = "qemu"; - module = ./configuration.nix; -} diff --git a/hosts/lenny/configuration.nix b/hosts/lenny/configuration.nix deleted file mode 100644 index 3d772e4..0000000 --- a/hosts/lenny/configuration.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ pkgs, ... }: -{ - environment.systemPackages = [ pkgs.vmware-horizon-client ]; - - services.openssh.enable = true; - - networking.search = [ "bck.me" ]; - - sconfig = { - profile = "desktop"; - gnome = true; - security-tools = true; - }; - - boot = { - loader.systemd-boot.enable = true; - loader.efi.canTouchEfiVariables = true; - initrd.luks.devices.cryptroot = { device = "/dev/disk/by-partlabel/_luks"; }; - }; - - fileSystems = { - "/" = { device = "/dev/mapper/cryptroot"; fsType = "btrfs"; options = [ "subvol=/os" "compress=zstd" ]; }; - "/nix" = { device = "/dev/disk/by-id/wwn-0x5002538043584d30"; fsType = "btrfs"; options = [ "compress=zstd" "discard" ]; }; - "/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; }; - }; - - system.stateVersion = "21.05"; -} diff --git a/hosts/lenny/default.nix b/hosts/lenny/default.nix deleted file mode 100644 index 14c0a47..0000000 --- a/hosts/lenny/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - pkgs = "nixpkgs"; - system = "x86_64-linux"; - hardware = "physical"; - module = ./configuration.nix; -} diff --git a/hosts/neo/configuration.nix b/hosts/neo/configuration.nix deleted file mode 100644 index c3b46b0..0000000 --- a/hosts/neo/configuration.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ pkgs, ... }: -{ - sconfig = { - gnome = true; - profile = "desktop"; - security-tools = true; - }; - - networking = { - search = [ "bck.me" ]; - }; - - environment.systemPackages = with pkgs; [ - vmware-horizon-client - wine - winetricks - ]; - - services = { - openssh.enable = true; - zfs.autoSnapshot = { enable = true; monthly = 0; weekly = 0; }; - }; - - boot = { - loader.systemd-boot.enable = true; - loader.efi.canTouchEfiVariables = true; - kernelParams = map (x: "video=DP-${x}:1280x720@60") [ "0" "1" "2" ]; - }; - - fileSystems = { - "/" = { device = "zroot/locker/os"; fsType = "zfs"; }; - "/home" = { device = "zroot/locker/home"; fsType = "zfs"; }; - "/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; }; - }; - - system.stateVersion = "20.09"; -} diff --git a/hosts/neo/default.nix b/hosts/neo/default.nix deleted file mode 100644 index 14c0a47..0000000 --- a/hosts/neo/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - pkgs = "nixpkgs"; - system = "x86_64-linux"; - hardware = "physical"; - module = ./configuration.nix; -} diff --git a/hosts/tosh/configuration.nix b/hosts/tosh/configuration.nix deleted file mode 100644 index 734157a..0000000 --- a/hosts/tosh/configuration.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ pkgs, ... }: -{ - services.openssh.enable = true; - - networking.search = [ "bck.me" ]; - - sconfig = { - profile = "desktop"; - gnome = true; - security-tools = true; - }; - - boot = { - loader.timeout = pkgs.lib.mkForce 3; - loader.grub.enable = true; - loader.grub.device = "/dev/disk/by-id/wwn-0x50000391e71024d6"; - initrd.luks.devices.cryptroot = { device = "/dev/disk/by-id/wwn-0x50000391e71024d6-part2"; }; - }; - - fileSystems = { - "/" = { device = "/dev/mapper/cryptroot"; fsType = "btrfs"; options = [ "subvol=/os" "compress=zstd" ]; }; - "/home" = { device = "/dev/mapper/cryptroot"; fsType = "btrfs"; options = [ "subvol=/home" "compress=zstd" ]; }; - "/boot" = { device = "/dev/disk/by-id/wwn-0x50000391e71024d6-part1"; fsType = "ext4"; }; - }; - - system.stateVersion = "21.05"; -} diff --git a/hosts/tosh/default.nix b/hosts/tosh/default.nix deleted file mode 100644 index 14c0a47..0000000 --- a/hosts/tosh/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - pkgs = "nixpkgs"; - system = "x86_64-linux"; - hardware = "physical"; - module = ./configuration.nix; -}