20 lines
458 B
Nix
20 lines
458 B
Nix
|
# NixOS configurations file.
|
||
|
{config, pkgs, lib,...}: {
|
||
|
system.stateVersion = "23.05";
|
||
|
imports = [
|
||
|
# Include the results of the hardware scan.
|
||
|
./hardware-configuration.nix
|
||
|
|
||
|
# User custom configurations.
|
||
|
./global
|
||
|
];
|
||
|
|
||
|
|
||
|
boot.plymouth.enable = true;
|
||
|
|
||
|
boot.loader.systemd-boot.enable = true;
|
||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
|
||
|
# Use xanmod kernel
|
||
|
boot.kernelPackages = pkgs.linuxKernel.kernels.linux_xanmod;
|
||
|
}
|