Files
nixos-blueprint/hosts/eldrid/configuration.nix
2025-05-03 23:08:55 +03:00

40 lines
632 B
Nix

{inputs, ...}: {
imports = with inputs; [
self.nixosModules.desktop
self.nixosModules.system
./boot
./disko
./hardware
./networking.nix
./nix
../dunamis/programs.nix
./services.nix
./sops.nix
./users.nix
];
desktop.plasma.enable = true;
locale.ukrainian.enable = true;
module.stylix = {
enable = true;
theme = "nord";
};
security.basic.enable = true;
system.stateVersion = "25.05";
swapDevices = [
{
device = "/swap/swapfile";
size = 8 * 1024; # eight gigs
}
];
time.timeZone = "Europe/Kyiv";
# virtual.libvirt.enable = true;
}