|
I use Nixos, btw. services.xserver.windowManager.xmonad = {
enable = true;
enableConfiguredRecompile = true;
enableContribAndExtras = true;
extraPackages = haskellPackages: [
haskellPackages.xmonad-contrib
haskellPackages.xmobar
];
config = builtins.readFile ./xmonad.hs;
};Everything is working fine. services.xserver.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
flake = {
enable = true;
# prefix = "unstable";
compiler = "ghc924";
};
};The questions:
Thanks in advance. |
Replies: 1 comment 1 reply
|
Directly below that example 1:
That's it. It's an easy way to use xmonad from git-master or a PR branch or your local changes, with the GHC version of your choice. 2:
Setting 3:
Sorry, but that |
Directly below that example
xmonad.flakeconfig:1:
That's it. It's an easy way to use xmonad from git-master or a PR branch or your local changes, with the GHC version of your choice.
2:
Setting
compileris optional; it doesn't need updating if you don't care about it.3:
Sorry, but that
NIX.mdfile and …