ref(nix): links gui dotfiles

This commit is contained in:
Léana 江 2024-01-19 21:04:53 +01:00 committed by Léana 江
parent 518427a7bd
commit 89bd6a435a
8 changed files with 20 additions and 1 deletions

View file

@ -1,33 +0,0 @@
{
description = ''
Bring XMonad library to $PATH for the language server to work
'';
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
};
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
packages = [
(pkgs.haskell.packages.ghc947.ghcWithPackages (hpkgs:
with hpkgs; [
haskell-language-server
stylish-haskell
xmonad
xmonad-contrib
neat-interpolation
]))
];
};
});
}