From c9c637e90d75c3cc8979798263708faa2f64eb20 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Sun, 18 Sep 2022 14:47:29 -0400 Subject: [PATCH] remove old hosts --- hosts/default.nix | 2 -- hosts/nixdev/default.nix | 44 ---------------------------------------- hosts/slate/default.nix | 24 ---------------------- 3 files changed, 70 deletions(-) delete mode 100644 hosts/nixdev/default.nix delete mode 100644 hosts/slate/default.nix diff --git a/hosts/default.nix b/hosts/default.nix index e0ba7bc..b44e0ef 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -15,6 +15,4 @@ builtins.mapAttrs cube = "x86_64-linux"; hp = "x86_64-linux"; lenny = "x86_64-linux"; - nixdev = "x86_64-linux"; - slate = "x86_64-linux"; } diff --git a/hosts/nixdev/default.nix b/hosts/nixdev/default.nix deleted file mode 100644 index 5896492..0000000 --- a/hosts/nixdev/default.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ config, lib, modulesPath, pkgs, ... }: -{ - imports = [ - "${modulesPath}/profiles/qemu-guest.nix" - ]; - - sconfig = { - gnome = true; - profile = "desktop"; - }; - - services.qemuGuest.enable = true; - - users.mutableUsers = false; - users.users.root.passwordFile = "/nix/persist/shadow_sean"; - users.users.sean.passwordFile = "/nix/persist/shadow_sean"; - - environment.variables.GTK_THEME = "Adwaita-dark"; - - environment.etc = - lib.genAttrs - [ - "machine-id" - "ssh/ssh_host_ed25519_key" - "ssh/ssh_host_rsa_key" - ] - (name: { source = "/nix/persist/etc/${name}"; }); - - boot.loader.grub = { - enable = true; - mirroredBoots = [{ - path = "/nix/persist/boot"; - devices = [ "/dev/sda" ]; - }]; - }; - - fileSystems = - { - "/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; }; - "/nix" = { device = "/dev/sda1"; fsType = "ext4"; options = [ "noatime" ]; }; - }; - - system.stateVersion = "22.05"; -} diff --git a/hosts/slate/default.nix b/hosts/slate/default.nix deleted file mode 100644 index b4af025..0000000 --- a/hosts/slate/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ pkgs, ... }: -{ - sconfig = { - profile = "desktop"; - gnome = true; - }; - - boot = { - loader.systemd-boot.enable = true; - loader.efi.canTouchEfiVariables = true; - initrd.luks.devices.cryptroot = { device = "/dev/disk/by-partlabel/_luks"; }; - }; - - hardware.cpu.intel.updateMicrocode = true; - hardware.enableRedistributableFirmware = true; - - fileSystems = { - "/" = { device = "/dev/mapper/cryptroot"; fsType = "btrfs"; options = [ "subvol=/os" "discard" "compress=zstd" ]; }; - "/home" = { device = "/dev/mapper/cryptroot"; fsType = "btrfs"; options = [ "subvol=/home" "discard" "compress=zstd" ]; }; - "/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; }; - }; - - system.stateVersion = "21.05"; -}