summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Ras <jras@hostnet.nl>2025-02-03 20:13:16 +0100
committerJasper Ras <jras@hostnet.nl>2025-02-03 20:13:16 +0100
commit354a2e25db30ae230e2ade0c65cda3717a005fb2 (patch)
tree65f432161daeb68d6576b0eaa8a0578835ad1f3f
parent157c6b37886f116d4b03004ae553f72a5a5e571c (diff)
rm more stuff
-rw-r--r--hosts/hardware-configuration/snorlex.nix32
-rw-r--r--hosts/snorlex.nix9
2 files changed, 0 insertions, 41 deletions
diff --git a/hosts/hardware-configuration/snorlex.nix b/hosts/hardware-configuration/snorlex.nix
deleted file mode 100644
index 77df044..0000000
--- a/hosts/hardware-configuration/snorlex.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-# Do not modify this file! It was generated by ‘nixos-generate-config’
-# and may be overwritten by future invocations. Please make changes
-# to /etc/nixos/configuration.nix instead.
-{ config, lib, modulesPath, ... }:
-
-{
- imports =
- [ (modulesPath + "/installer/scan/not-detected.nix")
- ];
-
- boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "uas" "sd_mod" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-intel" ];
- boot.extraModulePackages = [ ];
-
- fileSystems."/" =
- { device = "/dev/disk/by-uuid/f8724a86-f440-49a2-a6df-8183b451449c";
- fsType = "ext4";
- };
-
- swapDevices = [ ];
-
- # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
- # (the default) this is the recommended approach. When using systemd-networkd it's
- # still possible to use this option, but it's recommended to use it in conjunction
- # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
- networking.useDHCP = lib.mkDefault true;
- # networking.interfaces.eno1.useDHCP = lib.mkDefault true;
-
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
- hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
-}
diff --git a/hosts/snorlex.nix b/hosts/snorlex.nix
deleted file mode 100644
index 9ba6e6c..0000000
--- a/hosts/snorlex.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ ... }:
-{
- imports = [
- ./hardware-configuration/snorlex.nix
- ../roles/server.nix
- ];
-
- system.stateVersion = "24.05";
-}