Skip to content

Commit

Permalink
chore: update nixos build expr
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed Jul 3, 2024
1 parent f66ae4b commit f915203
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions local/lock/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions src/mkHome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ in
suites
{ programs.${shell}.enable = true; }
];
home.stateVersion =
if pkgs.stdenv.isDarwin then pkgs.lib.trivial.release else "24.05";
home.stateVersion = lib.mkDefault (
if pkgs.stdenv.isDarwin then pkgs.lib.trivial.release else "24.05"
);
};
users.users.${userName} = {
shell = pkgs."${shell}";
Expand Down
2 changes: 1 addition & 1 deletion units/nixos/darwinProfiles/presets/nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ in
{
imports = [ (loadSubmodule ./optimise.nix) ];
nix = {
package = pkgs.nixUnstable;
package = pkgs.nixVersions.git;
configureBuildUsers = true;
settings = {
# Administrative users on Darwin systems are part of the admin group.
Expand Down
2 changes: 1 addition & 1 deletion units/nixos/nixosProfiles/presets/coding/nickel.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ in
environment.systemPackages =
[ (nickel.packages.${pkgs.system}.default or inputs.nickel.default) ]
++ lib.optionals cfg.enableLsp [
(nickel.packages.${pkgs.system}.lsp-nls or inputs.nickel.lsp-nls)
(nickel.packages.${pkgs.system}.nickel-lang-lsp)
];
}
File renamed without changes.

0 comments on commit f915203

Please sign in to comment.