nix fmt, update hyperhive
This commit is contained in:
parent
e75fdb6121
commit
20e4642ec0
4 changed files with 24 additions and 9 deletions
|
|
@ -34,7 +34,14 @@ in
|
|||
};
|
||||
service.DISABLE_REGISTRATION = true;
|
||||
session.COOKIE_SECURE = true;
|
||||
ui.THEMES = lib.concatStringsSep "," ([ "forgejo-auto" "forgejo-light" "forgejo-dark" ] ++ themeNames);
|
||||
ui.THEMES = lib.concatStringsSep "," (
|
||||
[
|
||||
"forgejo-auto"
|
||||
"forgejo-light"
|
||||
"forgejo-dark"
|
||||
]
|
||||
++ themeNames
|
||||
);
|
||||
ui.DEFAULT_THEME = "catppuccin-mocha-mauve";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -14,7 +14,11 @@
|
|||
fileSystems."/var/lib/forgejo" = {
|
||||
device = "/dev/disk/by-uuid/da5efb9a-7dc2-4fa3-aeca-c9bf634054b0";
|
||||
fsType = "ext4";
|
||||
options = [ "discard" "nofail" "defaults" ];
|
||||
options = [
|
||||
"discard"
|
||||
"nofail"
|
||||
"defaults"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue