Skip to content

Commit

Permalink
servers/managed-users: adapt to removal of noxlibs
Browse files Browse the repository at this point in the history
  • Loading branch information
Shawn8901 committed Sep 27, 2024
1 parent 1497021 commit 15bd7aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/nixos/private/managed-user.nix
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ in
};
};
fonts = {
fontconfig.enable = lib.mkDefault (!config.environment.noXlibs);
enableDefaultPackages = lib.mkDefault (!config.environment.noXlibs);
fontconfig.enable = lib.mkDefault true;
enableDefaultPackages = lib.mkDefault true;
packages = [
(pkgs.nerdfonts.override {
fonts = [
Expand Down
1 change: 0 additions & 1 deletion modules/nixos/private/server.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ in
};
config = mkIf cfg.enable {
environment = {
noXlibs = false;
systemPackages = [
pkgs.gitMinimal
pkgs.btop
Expand Down

0 comments on commit 15bd7aa

Please sign in to comment.