more work on hosts/ and modules/config

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-05-04 18:48:42 +03:00
parent a87f912600
commit 03bcc94645
27 changed files with 136 additions and 249 deletions

View File

@ -2,29 +2,38 @@
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
];
networking = {
networkmanager.enable = true;
# hostId = "";
hostName = "eldrid";
};
environment.memoryAllocator.provider = "mimalloc";
system.stateVersion = "25.05";
time.timeZone = "Europe/Kyiv";
desktop.plasma.enable = true;
locale.ukrainian.enable = true;
module.stylix = {
enable = true;
theme = "nord";
module = {
config = {
secureBoot = true;
useIwd = true;
};
stylix = {
enable = true;
theme = "helios";
};
};
locale.ukrainian.enable = true;
opentabletdriver.enable = false;
qmk-vial.enable = true;
security.basic.enable = true;
system.stateVersion = "25.05";
virtual.libvirt.enable = false;
swapDevices = [
{
@ -32,8 +41,4 @@
size = 8 * 1024; # eight gigs
}
];
time.timeZone = "Europe/Kyiv";
# virtual.libvirt.enable = true;
}