From 7fbeb2513f2dc7ee6911caeb8c1064c931957f9a Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Fri, 13 Sep 2024 23:46:51 +0000 Subject: [PATCH] updates --- configuration.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/configuration.nix b/configuration.nix index b469c02..e97c0fc 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,6 +1,7 @@ { pkgs, modulesPath, ... }: let stateVersion = "24.05"; + unstable = import {}; in { imports = [ @@ -13,13 +14,13 @@ in (pkgs.writeShellScriptBin "nrbs" '' sudo nixos-rebuild switch '') + (pkgs.writeShellScriptBin "nrbsu" '' + sudo nix-channel --update && sudo nixos-rebuild switch + '') bash - # wget git eza - # python312 - # uv - appdaemon + # appdaemon ]; virtualisation.docker.enable = true; @@ -45,11 +46,11 @@ in home-manager = { useGlobalPkgs = true; users.appdaemon = { pkgs, ... }: { - home.packages = [ pkgs.uv ]; home.stateVersion = stateVersion; - programs.ssh = { - enable = true; - }; + programs.ssh.enable = true; + home.packages = [ + unstable.uv + ]; }; }; system.stateVersion = stateVersion;