Files
nixos-blueprint/hosts/legion/configuration.nix
2025-05-07 17:25:09 +03:00

40 lines
672 B
Nix

{
config,
inputs,
...
}: {
imports = with inputs; [
self.nixosModules.config
self.nixosModules.desktop
self.nixosModules.system
./disko
./hardware
];
networking = {
networkmanager.enable = true;
hostName = "legion";
};
environment.memoryAllocator.provider = "mimalloc";
system.stateVersion = "25.05";
time.timeZone = "Europe/Kyiv";
desktop.niri.enable = true;
module = {
config = {
# secureBoot = true;
# tpmDiskUnlock = true;
vaapi = "nvidia";
};
stylix = {
enable = true;
theme = "helios";
};
};
locale.ukrainian.enable = true;
virtual.libvirt.enable = true;
}