1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-19 21:33:53 +00:00
ultima/jetpure/host/default.nix

55 lines
1.2 KiB
Nix

{ x, lib, stateVersion, ... }:
let
inherit (x) True;
inherit (x) False;
in {
imports = [ ./parts ../../modules/nixos ];
module = {
themes.stylix = True // { theme = "paradise"; };
base = True;
# HARDWARE MODULES
hardware = {
amd = True // { amdvlk = False; };
bluetooth = True;
boot = True // { plymouth = True; };
network = True;
security = True;
};
# SERVICES MODULES
services = {
autocpu = False;
dbus = True;
deluge = False;
getty = True;
gvfs = True;
polkit = True;
printing = False;
tailscale = False;
tlp = False;
transmission = True // { tui = True; };
zapret = False;
zram = True // { algo = "zstd"; };
};
# PROGRAMS MODULES
programs = {
common = True;
hyprland = True;
sway = False;
steam = True;
hamachi = False // { gui = False; };
torrserver = True;
};
misc = {
console = False;
locales = True // { zone = "Asia/Chita"; };
minimal = True;
power = False;
protonmail = False;
system76 = False;
terraria = False;
users = True // { shell = "fish"; };
variables = True;
};
};
}