Skip to content

Commit

Permalink
fix(nix): resolve renamed module options
Browse files Browse the repository at this point in the history
  • Loading branch information
EdenEast committed Sep 1, 2024
1 parent e9c5514 commit f86a173
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion system/darwin/profiles/desktop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ in

config = mkIf cfg.enable {
fonts = {
fonts = with pkgs; [
packages = with pkgs; [
(
nerdfonts.override {
fonts = [ "JetBrainsMono" "Hack" "Meslo" "UbuntuMono" ];
Expand Down
2 changes: 1 addition & 1 deletion system/nixos/hosts/pride/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
hardware.keyboard.qmk.enable = true;

programs.steam.enable = true;
hardware.opengl.driSupport32Bit = true;
hardware.graphics.enable32Bit = true;
environment.systemPackages = with pkgs; [
lutris
];
Expand Down
2 changes: 1 addition & 1 deletion system/nixos/hosts/wrath/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@
hardware.keyboard.qmk.enable = true;

programs.steam.enable = true;
hardware.opengl.driSupport32Bit = true;
hardware.graphics.enable32Bit = true;
}
2 changes: 1 addition & 1 deletion system/nixos/profiles/desktop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ in

config = mkIf cfg.enable {
fonts = {
fonts = with pkgs; [
packages = with pkgs; [
(
nerdfonts.override {
fonts = [ "JetBrainsMono" "Hack" "Meslo" "UbuntuMono" ];
Expand Down

0 comments on commit f86a173

Please sign in to comment.