mirror of
https://git.sr.ht/~neverness/ultima
synced 2024-12-29 17:53:53 +00:00
80 lines
1.4 KiB
Nix
80 lines
1.4 KiB
Nix
{ x, ... }:
|
|
let
|
|
inherit (x) True;
|
|
inherit (x) False;
|
|
inherit (x) umport;
|
|
in
|
|
{
|
|
imports = umport {
|
|
exclude = [ ./default.nix ];
|
|
path = ./.;
|
|
};
|
|
module = {
|
|
themes.stylix = True // {
|
|
theme = "paradise";
|
|
};
|
|
base = True;
|
|
# HARDWARE MODULES
|
|
hardware = {
|
|
amd = True // {
|
|
amdvlk = False;
|
|
};
|
|
bluetooth = True;
|
|
boot = True // {
|
|
plymouth = True;
|
|
};
|
|
disko = True;
|
|
impermanence = False;
|
|
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;
|
|
hamachi = False;
|
|
hyprland = True;
|
|
steam = True;
|
|
sway = False;
|
|
torrserver = True;
|
|
winapps = True;
|
|
};
|
|
virt = {
|
|
podman = 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;
|
|
};
|
|
};
|
|
}
|