49 lines
926 B
Nix
49 lines
926 B
Nix
{inputs, ...}: {
|
|
imports = with inputs; [
|
|
self.modules.shared.nixos
|
|
self.nixosModules.desktop
|
|
self.nixosModules.system
|
|
./disko
|
|
./hardware
|
|
./misc
|
|
];
|
|
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
hostId = "14f63637";
|
|
hostName = "eldrid";
|
|
};
|
|
|
|
environment.memoryAllocator.provider = "mimalloc";
|
|
system.stateVersion = "25.11";
|
|
time.timeZone = "Europe/Kyiv";
|
|
|
|
desktop.niri.enable = true;
|
|
|
|
module = {
|
|
config = {
|
|
laptop.homeRowMods = true;
|
|
powerSave = true;
|
|
secureBoot = true;
|
|
useIwd = true;
|
|
vaapi = "intel-media-driver";
|
|
};
|
|
stylix = {
|
|
enable = true;
|
|
theme = "rose-pine-moon";
|
|
};
|
|
};
|
|
|
|
locale.ukrainian.enable = true;
|
|
opentabletdriver.enable = false;
|
|
qmk-vial.enable = true;
|
|
virtual.libvirt.enable = false;
|
|
|
|
swapDevices = [
|
|
{
|
|
device = "/swap/swapfile";
|
|
size = 8 * 1024; # eight gigs
|
|
}
|
|
];
|
|
}
|