diff options
| -rw-r--r-- | home-manager/theme-st.nix | 4 | ||||
| -rw-r--r-- | hosts/T495/configuration.nix | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/home-manager/theme-st.nix b/home-manager/theme-st.nix index 110c9d6..01c08ec 100644 --- a/home-manager/theme-st.nix +++ b/home-manager/theme-st.nix @@ -9,8 +9,8 @@ ) ; themed-st = pkgs.st.overrideAttrs (old: { - buildInputs = old.buildInputs or [] ++ [ pkgs.makeWrapper ]; - postInstall = old.postInstall or "" + '' + nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ pkgs.makeWrapper ]; + postInstall = (old.postInstall or "") + '' wrapProgram $out/bin/st \ --add-flags '-f"${generateXftFontString cfg.font.name cfg.font.attrs}"' ''; diff --git a/hosts/T495/configuration.nix b/hosts/T495/configuration.nix index 40c3489..6e7b0bd 100644 --- a/hosts/T495/configuration.nix +++ b/hosts/T495/configuration.nix @@ -46,6 +46,7 @@ enable = true; office.enable = true; }; + wifi.enable = true; }; # Install spotify |
