diff options
author | William Carroll <wpcarro@gmail.com> | 2021-12-23T23·34-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-23T23·39+0000 |
commit | 87981e7afd221f76a4361429a043881d6351e657 (patch) | |
tree | 0711429cd990082b824e17f051e4d0859eddc3fb /users/wpcarro/nixos/socrates/hardware.nix | |
parent | 9b2163cb32b599bd34253042faa43db7fd87cdb9 (diff) |
refactor(wpcarro/socrates): Delete socrates r/3339
A brief eulogy: Socrates was an Acer laptop that I bought at a used electronics shop in London for 100 quid. The laptop is no more... it is perished... it is deceased... it's not pining for the fjords! it is stone dead... Change-Id: Ia00e9e8fa05b9faa54c27fe86d880ad31402e2c6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4546 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/nixos/socrates/hardware.nix')
-rw-r--r-- | users/wpcarro/nixos/socrates/hardware.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/users/wpcarro/nixos/socrates/hardware.nix b/users/wpcarro/nixos/socrates/hardware.nix deleted file mode 100644 index dde14eb1e627..000000000000 --- a/users/wpcarro/nixos/socrates/hardware.nix +++ /dev/null @@ -1,30 +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, pkgs, ... }: - -{ - imports = - [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix> - ]; - - boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = - { device = "/dev/disk/by-uuid/aadf1a77-1e98-4b5f-8e74-abf8e77bda34"; - fsType = "ext4"; - }; - - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/1613-35B9"; - fsType = "vfat"; - }; - - swapDevices = [ ]; - - nix.maxJobs = lib.mkDefault 2; - powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; -} |