40 lines
655 B
Nix
40 lines
655 B
Nix
{inputs, ...}: {
|
|
imports = with inputs; [
|
|
self.nixosModules.desktop
|
|
self.nixosModules.system
|
|
./boot
|
|
./disko
|
|
./hardware
|
|
./networking
|
|
./nix
|
|
../dunamis/programs.nix
|
|
../dunamis/services.nix
|
|
../dunamis/sops.nix
|
|
../dunamis/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;
|
|
}
|