nixos-config/modules/nixos/linux/gui/desktopish/xmobar/xmobar-srid/default.nix
2024-09-28 18:01:53 -04:00

16 lines
437 B
Nix

# Since the xmonad config will be built by nixos-rebuild, we use the
# nix-channel's nixpkgs.
{ pkgs ? import <nixpkgs> { } }:
pkgs.haskellPackages.developPackage {
name = "xmobar-srid";
root = ./.;
modifier = drv:
pkgs.haskell.lib.addBuildTools drv (with pkgs.haskellPackages;
[
cabal-install
cabal-fmt
ghcid
haskell-language-server
]);
overrides = self: super: with pkgs.haskell.lib; { };
}