diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-12-07 09:26:26 -0600 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-12-07 09:26:26 -0600 |
| commit | 300f1f3d881cd46836a6686ff68997a80750f0d1 (patch) | |
| tree | dc146307f26988618111e1420369f02390e28748 | |
| parent | 9211292d8dff501f8529d2fd0eca3830dca9f160 (diff) | |
| download | nixos-300f1f3d881cd46836a6686ff68997a80750f0d1.tar.xz nixos-300f1f3d881cd46836a6686ff68997a80750f0d1.zip | |
| -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 |
