stash wip

This commit is contained in:
2024-09-22 14:54:06 -06:00
parent 3934d899b8
commit 2ad566ec27
4 changed files with 60 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
@@ -51,6 +51,7 @@
6767 # bazarr
5000 # kavita
3399 # sabnzbd
9999 # stash
];
in
{
@@ -88,12 +89,15 @@
};
users = {
groups.nixremote.gid = 555;
users.nixremote = {
isNormalUser = true;
createHome = true;
group = "nixremote";
home = "/var/nixremote/";
openssh.authorizedKeys.keys = [ (builtins.readFile ../../secrets/ssh/ed25519_nixworkstation.pub) ];
users = {
jawz.packages = with pkgs; [ stash ];
nixremote = {
isNormalUser = true;
createHome = true;
group = "nixremote";
home = "/var/nixremote/";
openssh.authorizedKeys.keys = [ (builtins.readFile ../../secrets/ssh/ed25519_nixworkstation.pub) ];
};
};
};
services = {