added desktop

This commit is contained in:
fwastring 2025-09-08 19:35:07 +02:00
parent 89e06b584d
commit 3e0ee3d933

View file

@ -16,14 +16,31 @@
../../moduler/users.nix ../../moduler/users.nix
../../moduler/nginx.nix ../../moduler/nginx.nix
../../moduler/k3s.nix ../../moduler/k3s.nix
#../../moduler/lsp.nix
]; ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
unstable.lego unstable.lego
neovim k9s
neovim
]; ];
services.tailscale.enable = true;
services.tailscale.package = pkgs.unstable.tailscale;
services.vaultwarden = {
enable = true;
dbBackend = "sqlite";
environmentFile = "/var/lib/vaultwarden.env";
config = {
ROCKET_ADDRESS = "127.0.0.1";
ROCKET_PORT = 8222;
DOMAIN = "https://vault.example.org";
SIGNUPS_ALLOWED = true;
ADMIN_TOKEN = "$argon2id$v=19$m=65540,t=3,p=4$...";
LOG_FILE = "/var/lib/bitwarden_rs/access.log";
};
};
networking.hostName = myhostname; networking.hostName = myhostname;
system.stateVersion = "25.05"; system.stateVersion = "25.05";