diff options
author | lassulus <git@lassul.us> | 2023-06-11 00:26:29 +0200 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-06-11 16:50:45 +0200 |
commit | 0df7c346705957a29136bd5802a4a0ef38cc3b52 (patch) | |
tree | 9fe3abdbe3af79e62f7b9abae2523c0045115d3e /krebs/3modules/upstream | |
parent | e45a615addcb3da25f2a21cc84a234efb1f0ad86 (diff) |
modules: import lib via relative path
Diffstat (limited to 'krebs/3modules/upstream')
-rw-r--r-- | krebs/3modules/upstream/window-managers/default.nix | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/krebs/3modules/upstream/window-managers/default.nix b/krebs/3modules/upstream/window-managers/default.nix index cb071f5b8..cdd82076d 100644 --- a/krebs/3modules/upstream/window-managers/default.nix +++ b/krebs/3modules/upstream/window-managers/default.nix @@ -1,22 +1,22 @@ { imports = [ - # # Replace upstream xmonad module with one that will be reloaded if changed. - # # - # # This module is intended to be upstreamed once fully tested. - # # The patch to be committed can be obtained using: - # # - # # diff -u <nixpkgs/nixos/modules/services/x11/window-managers/xmonad.nix> \ - # # <stockholm/tv/3modules/window-managers/xmonad.nix> - # # - # { - # disabledModules = [ "services/x11/window-managers/xmonad.nix" ]; - # imports = [ ./xmonad.nix ]; - # nixpkgs.overlays = [(self: super: { - # writers = super.writers // { - # writeHaskellBin = name: spec: - # super.writers.writeHaskellBin name (builtins.removeAttrs spec ["ghcArgs"]); - # }; - # })]; - # } + # Replace upstream xmonad module with one that will be reloaded if changed. + # + # This module is intended to be upstreamed once fully tested. + # The patch to be committed can be obtained using: + # + # diff -u <nixpkgs/nixos/modules/services/x11/window-managers/xmonad.nix> \ + # <stockholm/tv/3modules/window-managers/xmonad.nix> + # + { + disabledModules = [ "services/x11/window-managers/xmonad.nix" ]; + imports = [ ./xmonad.nix ]; + nixpkgs.overlays = [(self: super: { + writers = super.writers // { + writeHaskellBin = name: spec: + super.writers.writeHaskellBin name (builtins.removeAttrs spec ["ghcArgs"]); + }; + })]; + } ]; } |