summaryrefslogtreecommitdiff
path: root/host/hardware/idefix.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2026-07-10 15:24:55 +0200
committerAdrian Kummerlaender2026-07-10 15:37:24 +0200
commit8399441956ba3c7c968248891d65ced3b709856d (patch)
treed7f934e869ad73c6375d0bcc8a8a2d9bd9f6f877 /host/hardware/idefix.nix
parente8fe4bd2f8f2949f31253a0d63ac60636e78f1a9 (diff)
downloadnixos_system-8399441956ba3c7c968248891d65ced3b709856d.tar
nixos_system-8399441956ba3c7c968248891d65ced3b709856d.tar.gz
nixos_system-8399441956ba3c7c968248891d65ced3b709856d.tar.bz2
nixos_system-8399441956ba3c7c968248891d65ced3b709856d.tar.lz
nixos_system-8399441956ba3c7c968248891d65ced3b709856d.tar.xz
nixos_system-8399441956ba3c7c968248891d65ced3b709856d.tar.zst
nixos_system-8399441956ba3c7c968248891d65ced3b709856d.zip
wireguard: Move idefix to ChromeOS client
Diffstat (limited to 'host/hardware/idefix.nix')
-rw-r--r--host/hardware/idefix.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/host/hardware/idefix.nix b/host/hardware/idefix.nix
deleted file mode 100644
index 73795f8..0000000
--- a/host/hardware/idefix.nix
+++ /dev/null
@@ -1,50 +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, modulesPath, ... }:
-
-{
- imports =
- [ (modulesPath + "/installer/scan/not-detected.nix")
- ];
-
- boot = {
- initrd = {
- availableKernelModules = [ "ahci" "xhci_pci" "usb_storage" "sd_mod" "rtsx_usb_sdmmc" ];
- kernelModules = [ ];
- secrets = {
- "/crypto_keyfile.bin" = null;
- };
- # Enable swap on luks
- luks.devices."luks-d66399c9-3eb8-4ebc-9855-9aae346feabf".device = "/dev/disk/by-uuid/d66399c9-3eb8-4ebc-9855-9aae346feabf";
- luks.devices."luks-d66399c9-3eb8-4ebc-9855-9aae346feabf".keyFile = "/crypto_keyfile.bin";
- luks.devices."luks-1747c7bf-b0e6-4202-8e00-393c0e5a01f2".device = "/dev/disk/by-uuid/1747c7bf-b0e6-4202-8e00-393c0e5a01f2";
- };
- kernelModules = [ "kvm-intel" ];
- extraModulePackages = [ ];
- loader = {
- systemd-boot.enable = true;
- efi.canTouchEfiVariables = true;
- efi.efiSysMountPoint = "/boot/efi";
- };
- };
-
- fileSystems."/" =
- { device = "/dev/disk/by-uuid/a368ee22-54d1-45ff-b61b-529b9b438e52";
- fsType = "ext4";
- };
-
-
- fileSystems."/boot/efi" =
- { device = "/dev/disk/by-uuid/F393-BC14";
- fsType = "vfat";
- };
-
- swapDevices =
- [ { device = "/dev/disk/by-uuid/51ac8775-7ff6-4869-addb-fe139198e7c8"; }
- ];
-
- hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
-
- hardware.bluetooth.enable = true;
-}