Files
nixos-blueprint/hosts/eldrid/configuration.nix
2025-05-04 19:38:26 +03:00

45 lines
816 B
Nix

{inputs, ...}: {
imports = with inputs; [
self.nixosModules.desktop
self.nixosModules.system
./disko
./hardware
];
networking = {
networkmanager.enable = true;
# hostId = "";
hostName = "eldrid";
};
environment.memoryAllocator.provider = "mimalloc";
system.stateVersion = "25.05";
time.timeZone = "Europe/Kyiv";
desktop.plasma.enable = true;
module = {
config = {
secureBoot = true;
useIwd = true;
vaapi = "intel-media-driver";
};
stylix = {
enable = true;
theme = "helios";
};
};
locale.ukrainian.enable = true;
opentabletdriver.enable = false;
qmk-vial.enable = true;
virtual.libvirt.enable = false;
swapDevices = [
{
device = "/swap/swapfile";
size = 8 * 1024; # eight gigs
}
];
}