init
This commit is contained in:
32
configuration.nix
Normal file
32
configuration.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./modules/boot.nix
|
||||
./modules/hibernation.nix
|
||||
./modules/virtualization.nix
|
||||
./modules/locale.nix
|
||||
./modules/nvidia.nix
|
||||
./modules/desktop.nix
|
||||
./modules/users.nix
|
||||
./modules/system-packages.nix
|
||||
];
|
||||
|
||||
system.stateVersion = "25.11";
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
nix.settings = {
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
options = "--delete-older-than 7d";
|
||||
};
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
services.xserver.enable = true;
|
||||
}
|
||||
Reference in New Issue
Block a user