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