Files
nixos-blueprint/hosts/sarien/configuration.nix
T
2025-12-25 23:41:24 +02:00

54 lines
941 B
Nix

{inputs, ...}: {
imports = with inputs; [
self.nixosModules.desktop
self.nixosModules.system
self.modules.shared.nixos
./disko
./hardware
./misc
];
desktop.dms.enable = true;
services.displayManager.autoLogin = {
enable = true;
user = "user";
};
swapDevices = [
{
device = "/swap/swapfile";
size = 4 * 1024;
priority = 100;
}
{
device = "/swap/hibernate";
size = 16 * 1024;
priority = 1;
}
];
module = {
host = {
id = "31150fae";
name = "sarien";
stateVersion = "25.11";
};
config = {
laptop.homeRowMods = true;
powerSave = true;
useIwd = true;
vaapi = "intel-media-driver";
locale = "uk_UA.UTF-8";
timeZone = "Europe/Kyiv";
};
stylix = {
enable = true;
theme = "ashes";
};
misc.qmk-vial.enable = true;
virt.libvirt.enable = true;
};
}