diff options
Diffstat (limited to 'users/wpcarro/nixos/ava')
-rw-r--r-- | users/wpcarro/nixos/ava/default.nix | 5 | ||||
-rw-r--r-- | users/wpcarro/nixos/ava/hardware.nix | 31 |
2 files changed, 4 insertions, 32 deletions
diff --git a/users/wpcarro/nixos/ava/default.nix b/users/wpcarro/nixos/ava/default.nix index 47a93ed2ef7c..ace2c81cfdbe 100644 --- a/users/wpcarro/nixos/ava/default.nix +++ b/users/wpcarro/nixos/ava/default.nix @@ -3,6 +3,7 @@ let inherit (depot.users) wpcarro; + inherit (depot.users.wpcarro.lib) usermod; wpcarrosEmacs = wpcarro.emacs.nixos { load = [ ./ava.el ]; @@ -15,7 +16,9 @@ let }; in { - imports = [ ./hardware.nix ]; + imports = [ + (usermod "hardware/nopn.nix") + ]; # Use the TVL binary cache tvl.cache.enable = true; diff --git a/users/wpcarro/nixos/ava/hardware.nix b/users/wpcarro/nixos/ava/hardware.nix deleted file mode 100644 index 4bfdca1cc55a..000000000000 --- a/users/wpcarro/nixos/ava/hardware.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ config, lib, pkgs, modulesPath, ... }: - -{ - imports = - [ - (modulesPath + "/installer/scan/not-detected.nix") - ]; - - boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = - { - device = "/dev/disk/by-label/NIXROOT"; - fsType = "ext4"; - }; - - fileSystems."/boot" = - { - device = "/dev/disk/by-label/NIXBOOT"; - fsType = "vfat"; - }; - - swapDevices = [ ]; - - hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; - # high-resolution display - hardware.video.hidpi.enable = lib.mkDefault true; -} |