added taskchampion (not applied)
This commit is contained in:
parent
79b6257577
commit
ab2c125100
1 changed files with 11 additions and 4 deletions
|
|
@ -2,7 +2,9 @@
|
|||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
}: let
|
||||
user = "polen";
|
||||
in {
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
|
@ -19,8 +21,8 @@
|
|||
|
||||
services = {
|
||||
jellyfin = {
|
||||
inherit user;
|
||||
enable = true;
|
||||
user = "polen";
|
||||
};
|
||||
transmission = {
|
||||
enable = true;
|
||||
|
|
@ -29,6 +31,10 @@
|
|||
rpc-whitelist = "127.0.0.1,192.168.*.*";
|
||||
};
|
||||
};
|
||||
taskchampion-sync-server = {
|
||||
inherit user;
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
networking = {
|
||||
|
|
@ -36,14 +42,15 @@
|
|||
firewall.allowedTCPPorts = [
|
||||
8096 # jellyfin
|
||||
9091 # transmission
|
||||
10222 # taskchampion-sync-server
|
||||
];
|
||||
};
|
||||
|
||||
time.timeZone = "America/Toronto";
|
||||
|
||||
users.users.polen = {
|
||||
users.users.user = {
|
||||
isNormalUser = true;
|
||||
description = "polen";
|
||||
description = user;
|
||||
extraGroups = ["wheel" "transmission" "jellyfin"];
|
||||
shell = pkgs.zsh;
|
||||
openssh.authorizedKeys.keys = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue