diff --git a/hosts/thegeneralist-central-mbp/configuration.nix b/hosts/thegeneralist-central-mbp/configuration.nix index 9f8c03a..a6ffb2f 100644 --- a/hosts/thegeneralist-central-mbp/configuration.nix +++ b/hosts/thegeneralist-central-mbp/configuration.nix @@ -24,7 +24,7 @@ home-manager = { backupFileExtension = "home.bak"; users.central.home = { - stateVersion = "25.11"; + stateVersion = "26.05"; homeDirectory = "/Users/central"; }; }; diff --git a/hosts/thegeneralist-central/configuration.nix b/hosts/thegeneralist-central/configuration.nix index fe9b658..7f720e8 100644 --- a/hosts/thegeneralist-central/configuration.nix +++ b/hosts/thegeneralist-central/configuration.nix @@ -82,7 +82,7 @@ home = { username = "thegeneralist"; homeDirectory = "/home/thegeneralist"; - stateVersion = "25.11"; + stateVersion = "26.05"; }; }; }; diff --git a/hosts/thegeneralist-mbp/configuration.nix b/hosts/thegeneralist-mbp/configuration.nix index 612c424..7de0dad 100644 --- a/hosts/thegeneralist-mbp/configuration.nix +++ b/hosts/thegeneralist-mbp/configuration.nix @@ -24,8 +24,7 @@ home-manager = { backupFileExtension = "home.bak"; users.thegeneralist.home = { - # stateVersion = "25.11"; - stateVersion = "25.11"; + stateVersion = "26.05"; homeDirectory = "/Users/thegeneralist"; }; }; diff --git a/hosts/thegeneralist/configuration.nix b/hosts/thegeneralist/configuration.nix index 8064501..cb7818d 100644 --- a/hosts/thegeneralist/configuration.nix +++ b/hosts/thegeneralist/configuration.nix @@ -37,7 +37,7 @@ users.thegeneralist.home = { username = "thegeneralist"; homeDirectory = "/home/thegeneralist"; - stateVersion = "25.11"; + stateVersion = "26.05"; }; }; diff --git a/modules/common/shell/0_nushell.nix b/modules/common/shell/0_nushell.nix index 28c69a0..9f83ff8 100644 --- a/modules/common/shell/0_nushell.nix +++ b/modules/common/shell/0_nushell.nix @@ -21,7 +21,7 @@ let unstable = import (builtins.fetchTarball { url = "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz"; sha256 = if (config.isServer) then "sha256:0fgmdh1j6qrx64wq8wk2hry2rjh3rkvz9pch29l8zn49nlndvxy2" else (if (config.onLinux) then "sha256:03plivnr4cg0h8v7djf9g2jra09r45pmdiirmy4lvl2n1d4yb7ac" else "sha256:16xi1yijq2ccbp8254zc0b5fgz0igxvyf4yn349wj2ggk4cl6dgn"); - }) { system = pkgs.system; }; + }) { system = pkgs.stdenv.hostPlatform.system; }; package = unstable.nushell; in { diff --git a/modules/linux/packages.nix b/modules/linux/packages.nix index 47b1be7..33cbf1b 100644 --- a/modules/linux/packages.nix +++ b/modules/linux/packages.nix @@ -16,6 +16,6 @@ in { obsidian tor-browser; }) else []) ++ (if (!config.isServer) then [ - inputs.helium.packages.${pkgs.system}.default + inputs.helium.packages.${pkgs.stdenv.hostPlatform.system}.default ] else []); }