This commit is contained in:
2024-03-05 15:02:42 +01:00
parent 4a37c5afd7
commit 0fb5a5ee0b
5 changed files with 152 additions and 3 deletions

View File

@@ -26,8 +26,19 @@
useUserPackages = true;
users.elias = import ./home/default.nix;
};
nixpkgs.overlays = [ inputs.neovim-nightly-overlay.overlay ];
nixpkgs.overlays = [
(final: prev: {
xmobar = final.haskellPackages.callPackage
./home/programs/xmonad/src/xmobar/default.nix { };
})
inputs.neovim-nightly-overlay.overlay
];
}
] ++ xmonad-contrib.nixosModules ++ [
# `modernise` replaces the standard xmonad module and wrapper script
# with those from unstable. This is currently a necessary workaround to
# make Mod-q recompilation work.
xmonad-contrib.modernise."x86_64-linux"
];
};
};