2025-03-29 23:08:26 -05:00
|
|
|
let
|
|
|
|
inherit (import ../helpers.nix) directoryImport;
|
|
|
|
modules = directoryImport ./.;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
flake.nixosModules = {
|
|
|
|
mars = {
|
|
|
|
imports = builtins.attrValues {
|
|
|
|
inherit (modules)
|
|
|
|
syncthing
|
|
|
|
ollama
|
2025-05-12 13:13:42 -05:00
|
|
|
plasma
|
2025-05-10 00:21:19 -05:00
|
|
|
sddm
|
2025-05-10 16:28:48 -05:00
|
|
|
hypr
|
2025-05-12 13:13:42 -05:00
|
|
|
niri
|
2025-05-10 16:28:48 -05:00
|
|
|
wayland
|
2025-03-29 23:08:26 -05:00
|
|
|
searx
|
|
|
|
flatpak
|
2025-07-06 13:35:31 -05:00
|
|
|
wireGuard
|
2025-03-29 23:08:26 -05:00
|
|
|
;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
deimos = {
|
|
|
|
imports = builtins.attrValues {
|
|
|
|
inherit (modules)
|
2025-05-09 23:12:45 -05:00
|
|
|
niri
|
2025-05-12 15:39:05 -05:00
|
|
|
hypr
|
2025-05-09 23:12:45 -05:00
|
|
|
wayland
|
2025-05-12 15:39:05 -05:00
|
|
|
plasma
|
2025-03-29 23:08:26 -05:00
|
|
|
sddm
|
|
|
|
flatpak
|
2025-05-16 20:03:42 -05:00
|
|
|
espanso
|
2025-07-06 13:35:31 -05:00
|
|
|
wireGuard
|
2025-03-29 23:08:26 -05:00
|
|
|
;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2025-04-18 01:06:30 -05:00
|
|
|
phobos = {
|
|
|
|
imports = builtins.attrValues {
|
|
|
|
inherit (modules)
|
|
|
|
plasma
|
|
|
|
sddm
|
|
|
|
;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2025-03-29 23:08:26 -05:00
|
|
|
ceres = {
|
|
|
|
imports = builtins.attrValues {
|
|
|
|
inherit (modules)
|
|
|
|
acme
|
2025-06-08 22:19:04 -05:00
|
|
|
audiobookshelf
|
2025-06-08 22:19:27 -05:00
|
|
|
caddy
|
2025-07-03 20:03:37 -05:00
|
|
|
forgejo
|
2025-07-03 20:25:51 -05:00
|
|
|
glance
|
2025-06-09 00:13:34 -05:00
|
|
|
jellyfin
|
2025-06-08 22:20:25 -05:00
|
|
|
logrotate
|
|
|
|
mastodon
|
|
|
|
minecraft
|
|
|
|
ollama
|
2025-07-07 16:33:07 -05:00
|
|
|
# opencloud
|
2025-06-08 22:20:25 -05:00
|
|
|
postgresql
|
|
|
|
samba
|
|
|
|
searx
|
|
|
|
vaultwarden
|
2025-07-03 20:03:37 -05:00
|
|
|
website
|
2025-03-29 23:08:26 -05:00
|
|
|
;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2025-07-01 15:39:57 -05:00
|
|
|
crust = {
|
2025-03-29 23:08:26 -05:00
|
|
|
imports = builtins.attrValues {
|
|
|
|
inherit (modules)
|
2025-07-01 15:39:57 -05:00
|
|
|
hardware
|
|
|
|
programs
|
2025-03-29 23:08:26 -05:00
|
|
|
;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2025-07-01 15:39:57 -05:00
|
|
|
mantle = {
|
2025-03-29 23:08:26 -05:00
|
|
|
imports = builtins.attrValues {
|
|
|
|
inherit (modules)
|
2025-07-01 15:39:57 -05:00
|
|
|
sops
|
|
|
|
xserver
|
2025-03-29 23:08:26 -05:00
|
|
|
;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
core = {
|
|
|
|
imports = builtins.attrValues {
|
|
|
|
inherit (modules)
|
|
|
|
core
|
|
|
|
;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|