added desktop
This commit is contained in:
parent
89e06b584d
commit
3e0ee3d933
1 changed files with 19 additions and 2 deletions
|
@ -16,14 +16,31 @@
|
|||
../../moduler/users.nix
|
||||
../../moduler/nginx.nix
|
||||
../../moduler/k3s.nix
|
||||
#../../moduler/lsp.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
unstable.lego
|
||||
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;
|
||||
|
||||
system.stateVersion = "25.05";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue