🚚 (aurum) rename <thing>/default.nix to thing.nix
This commit is contained in:
parent
85a271e547
commit
13057ecc9c
|
@ -1,5 +1,5 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./greetd
|
./greetd.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
boot.supportedFilesystems = ["ntfs"];
|
boot.supportedFilesystems = ["ntfs"];
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
# tmp, will be replaced by lanzaboot
|
# TODO: replace by lanzaboot
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
|
||||||
# clean /tmp at each boot
|
# clean /tmp at each boot
|
||||||
|
@ -20,10 +20,6 @@
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
|
||||||
# imports = [
|
|
||||||
# ./lanzaboot.nix
|
|
||||||
# ];
|
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = ["xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod"];
|
boot.initrd.availableKernelModules = ["xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod"];
|
||||||
boot.initrd.kernelModules = [""];
|
boot.initrd.kernelModules = [""];
|
||||||
boot.kernelModules = ["kvm-intel"];
|
boot.kernelModules = ["kvm-intel"];
|
|
@ -8,17 +8,19 @@
|
||||||
system.stateVersion = "24.05"; # Did you read the comment?
|
system.stateVersion = "24.05"; # Did you read the comment?
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./audio
|
./audio.nix
|
||||||
./boot
|
./boot.nix
|
||||||
# ./disko
|
# ./disko.nix
|
||||||
./docker
|
./docker.nix
|
||||||
./fonts
|
./fonts.nix
|
||||||
./hardware
|
./hardware.nix
|
||||||
./i18n
|
./i18n.nix
|
||||||
# ./impermanence
|
# ./impermanence.nix
|
||||||
./networking
|
# ./lanzaboot.nix
|
||||||
./nix
|
./networking.nix
|
||||||
./security
|
./nix.nix
|
||||||
./users
|
./partitions.nix
|
||||||
|
./security.nix
|
||||||
|
./users.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,10 +20,6 @@
|
||||||
# backlight intensity
|
# backlight intensity
|
||||||
programs.light.enable = true;
|
programs.light.enable = true;
|
||||||
|
|
||||||
imports = [
|
|
||||||
./partitions.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
# webcam
|
# webcam
|
||||||
# hardware.firmware = [
|
# hardware.firmware = [
|
||||||
# pkgs.ivsc-firmware
|
# pkgs.ivsc-firmware
|
Loading…
Reference in a new issue