Files
nixos-blueprint/hosts/legion/configuration.nix
unexplrd d70b2f7f8a hosts: bump system.stateVersion
flake.lock: bump

Signed-off-by: unexplrd <unexplrd@linerds.us>
2025-05-22 09:55:19 +03:00

42 lines
729 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.11";
time.timeZone = "Europe/Kyiv";
desktop.niri.enable = true;
module = {
config = {
laptop.homeRowMods = true;
powerSave = true;
# secureBoot = true;
# tpmDiskUnlock = true;
vaapi = "nvidia";
};
stylix = {
enable = true;
theme = "helios";
};
};
locale.ukrainian.enable = true;
virtual.libvirt.enable = true;
}