From 9dc7dff602963ab20c336115dc906114c7487f49 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sun, 12 Jun 2022 13:47:55 +0800 Subject: [PATCH] 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. --- hosts/ni/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/hosts/ni/default.nix b/hosts/ni/default.nix index 5bcfb164..be3f4114 100644 --- a/hosts/ni/default.nix +++ b/hosts/ni/default.nix @@ -40,15 +40,12 @@ home = "/home/foo-dogsquared"; }; }; - tasks = { - backup-archive.enable = true; - multimedia-archive.enable = true; - }; - themes = { - themes.a-happy-gnome.enable = true; - }; + + tasks.multimedia-archive.enable = true; + themes.themes.a-happy-gnome.enable = true; environment.systemPackages = with pkgs; [ + # This is installed just to get Geiser to properly work. guile_3_0 ]; @@ -98,6 +95,6 @@ # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (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? }