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,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: let
|
||||||
|
user = "polen";
|
||||||
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
@ -19,8 +21,8 @@
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
jellyfin = {
|
jellyfin = {
|
||||||
|
inherit user;
|
||||||
enable = true;
|
enable = true;
|
||||||
user = "polen";
|
|
||||||
};
|
};
|
||||||
transmission = {
|
transmission = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -29,6 +31,10 @@
|
||||||
rpc-whitelist = "127.0.0.1,192.168.*.*";
|
rpc-whitelist = "127.0.0.1,192.168.*.*";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
taskchampion-sync-server = {
|
||||||
|
inherit user;
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
|
@ -36,14 +42,15 @@
|
||||||
firewall.allowedTCPPorts = [
|
firewall.allowedTCPPorts = [
|
||||||
8096 # jellyfin
|
8096 # jellyfin
|
||||||
9091 # transmission
|
9091 # transmission
|
||||||
|
10222 # taskchampion-sync-server
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
time.timeZone = "America/Toronto";
|
time.timeZone = "America/Toronto";
|
||||||
|
|
||||||
users.users.polen = {
|
users.users.user = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "polen";
|
description = user;
|
||||||
extraGroups = ["wheel" "transmission" "jellyfin"];
|
extraGroups = ["wheel" "transmission" "jellyfin"];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
openssh.authorizedKeys.keys = [
|
openssh.authorizedKeys.keys = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue