aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-30 16:01:44 -0400
committerRosa <rosaontheweb@proton.me>2026-03-30 16:01:44 -0400
commitbfb23e5308546eaa69deb0e7042b2fcebb4eedef (patch)
tree54a3b0641f4cbd95b98a5e64ecef1c874da3de83 /hosts
parent1fcf3c939d38e2907cb3b614bfb56533a68ee430 (diff)
apply changes from cgs
Diffstat (limited to 'hosts')
-rw-r--r--hosts/canadian-government-system/disks.nix2
-rw-r--r--hosts/canadian-government-system/hardware-configuration.nix28
2 files changed, 15 insertions, 15 deletions
diff --git a/hosts/canadian-government-system/disks.nix b/hosts/canadian-government-system/disks.nix
index 4f62b27..e8d3ab8 100644
--- a/hosts/canadian-government-system/disks.nix
+++ b/hosts/canadian-government-system/disks.nix
@@ -33,7 +33,7 @@
content = {
format = "vfat";
mountOptions = [ "umask=0077" ];
- mountpoint = "/boot";
+ #mountpoint = "/boot";
type = "filesystem";
};
diff --git a/hosts/canadian-government-system/hardware-configuration.nix b/hosts/canadian-government-system/hardware-configuration.nix
index 88db163..4d805aa 100644
--- a/hosts/canadian-government-system/hardware-configuration.nix
+++ b/hosts/canadian-government-system/hardware-configuration.nix
@@ -1,18 +1,18 @@
+# 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, ... }:
+
{
- config,
- lib,
- modulesPath,
- pkgs,
- ...
-}:
-{
- imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
- boot.initrd.availableKernelModules = [
- "xhci_pci"
- "ahci"
- "usbhid"
- "sd_mod"
- ];
+ imports =
+ [ (modulesPath + "/installer/scan/not-detected.nix")
+ ];
+
+ boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" ];
+ boot.initrd.kernelModules = [ ];
+ boot.kernelModules = [ ];
+ boot.extraModulePackages = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
+ hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}