about summary refs log tree commit diff stats
path: root/hosts/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/desktop')
-rw-r--r--hosts/desktop/configuration.nix21
-rw-r--r--hosts/desktop/hardware/cpu.nix4
-rw-r--r--hosts/desktop/hardware/default.nix28
-rw-r--r--hosts/desktop/hardware/gpu.nix19
-rw-r--r--hosts/desktop/networking.nix14
5 files changed, 0 insertions, 86 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix
deleted file mode 100644
index 7f68621c..00000000
--- a/hosts/desktop/configuration.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-# vim: ts=2
-{
-  config,
-  lib,
-  nixpkgs,
-  home-manager,
-  ...
-}: {
-  imports = [
-    ./hardware
-    ./networking.nix
-
-    ../../secrets
-
-    ../../system
-
-    ../../services
-  ];
-
-  system.stateVersion = "23.05";
-}
diff --git a/hosts/desktop/hardware/cpu.nix b/hosts/desktop/hardware/cpu.nix
deleted file mode 100644
index 6859f72a..00000000
--- a/hosts/desktop/hardware/cpu.nix
+++ /dev/null
@@ -1,4 +0,0 @@
-{config, ...}: {
-  powerManagement.cpuFreqGovernor = "powersave";
-  hardware.cpu.intel.updateMicrocode = true; # Why not?
-}
diff --git a/hosts/desktop/hardware/default.nix b/hosts/desktop/hardware/default.nix
deleted file mode 100644
index bd7241b3..00000000
--- a/hosts/desktop/hardware/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
-  config,
-  lib,
-  pkgs,
-  modulesPath,
-  ...
-}: {
-  imports = [
-    (modulesPath + "/installer/scan/not-detected.nix") # TODO is this necessary?
-    ./cpu.nix
-    ./gpu.nix
-  ];
-
-  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
-
-  system.fileSystemLayouts = {
-    enable = true;
-    mainDisk = "/dev/disk/by-uuid/<uuid>";
-    efiDisk = "/dev/disk/by-uuid/<uuid>";
-  };
-
-  boot = {
-    kernelModules = ["kvm-amd"];
-
-    # TODO check this:
-    initrd.availableKernelModules = ["xhci_pci" "nvme" "rtsx_pci_sdmmc"];
-  };
-}
diff --git a/hosts/desktop/hardware/gpu.nix b/hosts/desktop/hardware/gpu.nix
deleted file mode 100644
index 741e8882..00000000
--- a/hosts/desktop/hardware/gpu.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-  config,
-  pkgs,
-  lib,
-  ...
-}: {
-  nixpkgs.config.packageOverrides = pkgs: {
-    vaapiIntel = pkgs.vaapiIntel.override {enableHybridCodec = true;};
-  };
-  hardware.opengl = {
-    enable = true;
-    extraPackages = with pkgs; [
-      intel-media-driver # LIBVA_DRIVER_NAME=iHD
-      vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
-      vaapiVdpau
-      libvdpau-va-gl
-    ];
-  };
-}
diff --git a/hosts/desktop/networking.nix b/hosts/desktop/networking.nix
deleted file mode 100644
index 17f7c356..00000000
--- a/hosts/desktop/networking.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{
-  config,
-  lib,
-  ...
-}: {
-  # 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.enp0s31f6.useDHCP = lib.mkDefault true;
-  # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true;
-  networking.hostName = "Apzu";
-}