forked from Zynh0722/permafrost
configuration: refactor permafrost settings
This commit is contained in:
parent
c6c76c488c
commit
ce12747938
1 changed files with 8 additions and 6 deletions
|
@ -1,11 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
permafrost.nyazoom.enable = true;
|
||||
permafrost.forgejo.enable = true;
|
||||
permafrost.motd.enable = true;
|
||||
permafrost.acme.enable = true;
|
||||
permafrost.acme.useStagingServer = false;
|
||||
permafrost = {
|
||||
nyazoom.enable = true;
|
||||
forgejo.enable = true;
|
||||
foundry.enable = true;
|
||||
motd.enable = true;
|
||||
acme.enable = true;
|
||||
acme.useStagingServer = false;
|
||||
};
|
||||
|
||||
networking.hostName = "permafrost"; # Define your hostname.
|
||||
|
||||
|
@ -17,7 +20,6 @@
|
|||
nix.settings = {
|
||||
auto-optimise-store = true;
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
};
|
||||
|
||||
# Enable networking
|
||||
|
|
Loading…
Reference in a new issue