set state version explicitly
This commit is contained in:
parent
d2627f9b4c
commit
941f29cbee
3 changed files with 4 additions and 0 deletions
|
@ -34,6 +34,7 @@ in {
|
|||
user = "fossil";
|
||||
group = "fossil";
|
||||
in {
|
||||
system.stateVersion = "22.05";
|
||||
environment.systemPackages = [ pkgs.fossil ];
|
||||
users.groups = { "${group}" = { }; };
|
||||
users.users = {
|
||||
|
|
|
@ -47,6 +47,7 @@ in {
|
|||
};
|
||||
};
|
||||
config = { config, pkgs, ... }: {
|
||||
system.stateVersion = "22.05";
|
||||
systemd.services."foundryvtt" = {
|
||||
requires = [ "network-online.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
@ -65,6 +66,7 @@ in {
|
|||
hostPort = 30001;
|
||||
}];
|
||||
config = { config, pkgs, ... }: {
|
||||
system.stateVersion = "22.05";
|
||||
systemd.services."foundryvtt" = {
|
||||
requires = [ "network-online.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
|
|
@ -26,6 +26,7 @@ in {
|
|||
root = config.services.tt-rss.root;
|
||||
pool = config.services.tt-rss.pool;
|
||||
in rec {
|
||||
system.stateVersion = "22.05";
|
||||
services.tt-rss = {
|
||||
enable = true;
|
||||
selfUrlPath = "https://${domain}";
|
||||
|
|
Loading…
Reference in a new issue