Files
nixos-blueprint/hosts/dunamis/configuration.nix
2025-05-04 18:12:28 +03:00

36 lines
698 B
Nix

{inputs, ...}: {
imports = with inputs; [
self.nixosModules.config
self.nixosModules.desktop
self.nixosModules.system
./disko
./minecraft.nix
];
networking = {
hostId = "c7f6c4a1";
hostName = "dunamis";
};
environment.memoryAllocator.provider = "mimalloc";
system.stateVersion = "25.05";
time.timeZone = "Europe/Kyiv";
desktop.niri.enable = true;
module.config = {
secureBoot = true;
tpmDiskUnlock = true;
};
module.stylix = {
enable = true;
theme = "helios";
};
locale.ukrainian.enable = true;
opentabletdriver.enable = false;
qmk-vial.enable = true;
security.basic.enable = true;
virtual.libvirt.enable = true;
}