feat(spacestation): new spacestation NAS host

This commit is contained in:
Guz
2026-06-02 14:52:44 -03:00
parent c7b161906a
commit cab024bf54
10 changed files with 315 additions and 3 deletions

View File

@@ -1,6 +1,4 @@
{
config,
lib,
inputs,
pkgs,
self,
@@ -32,7 +30,7 @@
services.flatpak.enable = true;
# Shell
programs.zsh.enable = true;
# programs.zsh.enable = true;
# SDDM (Display Manager)
services.displayManager.sddm = {

View File

@@ -29,9 +29,12 @@
blender
blockbench
bitwarden-desktop
# davinci-resolve
inkscape
kdePackages.kdenlive
nextcloud-client
obsidian
openrgb
prismlauncher
javaPackages.compiler.temurin-bin.jdk-25

View File

@@ -1,6 +1,14 @@
{lib, ...}:
with lib; {
home.persistence."/persist" = {
files = map (d:
if isList d
then {
file = elemAt d 1;
mode = elemAt d 0;
}
else d) [
];
directories = map (d:
if isList d
then {