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;