diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-28 19:20:04 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-28 19:20:04 +0200 |
commit | d27c6c78f2b97ae3d03ff1be6e1ca5be37e74930 (patch) | |
tree | 3cdef8173400a6c7143d70a4cb3f8ec4049a7980 | |
parent | Packages: Remove adl (diff) | |
download | nixos-config-d27c6c78f2b97ae3d03ff1be6e1ca5be37e74930.tar.gz nixos-config-d27c6c78f2b97ae3d03ff1be6e1ca5be37e74930.tar.bz2 nixos-config-d27c6c78f2b97ae3d03ff1be6e1ca5be37e74930.zip |
Packages: Remove xmonadctl
Already packaged in nixpkgs
-rw-r--r-- | hosts/home.nix | 2 | ||||
-rw-r--r-- | packages/xmonadctl/default.nix | 9 |
2 files changed, 1 insertions, 10 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index f48b8ef..e2e571e 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -28,6 +28,7 @@ in polkit_gnome nixpkgs-fmt virt-manager + xmonadctl xdotool #needed for xmobar clickable workspaces xlockmore arandr @@ -35,7 +36,6 @@ in (with pkgs.custom; [ smart-wallpaper dwmbar - xmonadctl lemacs ]); }; diff --git a/packages/xmonadctl/default.nix b/packages/xmonadctl/default.nix deleted file mode 100644 index 7968685..0000000 --- a/packages/xmonadctl/default.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ writers, haskellPackages, ... }: -writers.writeHaskellBin "xmonadctl" -{ - libraries = [ haskellPackages.xmonad-contrib haskellPackages.X11 ]; -} - (builtins.readFile (builtins.fetchurl { - url = "https://raw.githubusercontent.com/xmonad/xmonad-contrib/6ab136eb5606ddec0735bda0be5b82785494a409/scripts/xmonadctl.hs"; - sha256 = "sha256:04453qq1vvm5s9hmaq60krpca856z0ch1fs2y7hy7wdp3wm17pym"; - })) |