hosts/ni: update config

For now, we're removing the backup media task just to make it easier to
install for non-local setups. It is pretty much the only thing that
requires the most secrets and I want to easily showcase my NixOS setup
or something like that. Enabling the task is still in the local changes,
just not to be committed.
This commit is contained in:
Gabriel Arazas 2022-06-12 13:47:55 +08:00
parent c3acfe9936
commit 9dc7dff602

View File

@ -40,15 +40,12 @@
home = "/home/foo-dogsquared"; home = "/home/foo-dogsquared";
}; };
}; };
tasks = {
backup-archive.enable = true; tasks.multimedia-archive.enable = true;
multimedia-archive.enable = true; themes.themes.a-happy-gnome.enable = true;
};
themes = {
themes.a-happy-gnome.enable = true;
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# This is installed just to get Geiser to properly work.
guile_3_0 guile_3_0
]; ];
@ -98,6 +95,6 @@
# this value at the release version of the first install of this system. # this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option # Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.11"; # Did you read the comment? system.stateVersion = "22.05"; # Did you read the comment?
} }