diff options
author | William Carroll <wpcarro@gmail.com> | 2022-07-05T16·43-0700 |
---|---|---|
committer | wpcarro <wpcarro@gmail.com> | 2022-07-22T03·02+0000 |
commit | 33f6419d7efb777884c7c44dc2f00216fbd4191f (patch) | |
tree | c34532b34db9d1500a1d78b2d61621688e955498 /users/wpcarro/nixos/tarasco/hardware.nix | |
parent | cd5fa69897fb0ab3abaf8b24e1a0eb482f933efc (diff) |
refactor(wpcarro/nixos): Define shared nopn.nix module r/4313
Shared between `ava` and `tarasco`. Also define `lib/default.nix` to share utility functions like `usermod` between NixOS configurations. Change-Id: I65b8d37520426e164c9d5f722bee4731a3c6e641 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5942 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com>
Diffstat (limited to 'users/wpcarro/nixos/tarasco/hardware.nix')
-rw-r--r-- | users/wpcarro/nixos/tarasco/hardware.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/users/wpcarro/nixos/tarasco/hardware.nix b/users/wpcarro/nixos/tarasco/hardware.nix deleted file mode 100644 index 3d09b9edd8d7..000000000000 --- a/users/wpcarro/nixos/tarasco/hardware.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ config, lib, pkgs, modulesPath, ... }: - -{ - imports = - [ - (modulesPath + "/installer/scan/not-detected.nix") - ]; - - 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; -} |