Added a hw config to light

This commit is contained in:
Alexandre 2026-02-07 20:22:02 +01:00
parent 825fb34253
commit 79cbae2cfe
3 changed files with 43 additions and 2 deletions

View File

@ -0,0 +1,41 @@
# 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 = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" "alcor" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/caa81e10-576e-4868-bf1f-1395a5d23ab0";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/CD34-DB0C";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/d7c24a97-9d09-4553-8587-df333b3de55a"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.eno1.useDHCP = lib.mkDefault true;
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}

View File

@ -1,7 +1,7 @@
{ {
common = { common = {
home = ../hosts/common/home.nix; home = ../hosts/common/home.nix;
module = ../../hosts/common/modules.nix; module = ../hosts/common/modules.nix;
ai = ./common/ai.nix; ai = ./common/ai.nix;
direnv = ./common/direnv.nix; direnv = ./common/direnv.nix;
environment = ./common/environment.nix; environment = ./common/environment.nix;

View File

@ -7,7 +7,7 @@
xterm = { xterm = {
enable = true; enable = true;
}; };
xfce { xfce = {
enable = true; enable = true;
}; };
}; };