nixos/home-manager/modules/dmenu.nix

13 lines
320 B
Nix
Raw Normal View History

2024-03-16 19:03:53 +01:00
{ inputs, pkgs, ... }: {
home.packages = with pkgs;
[
# My custom dmenu build
(dmenu.overrideAttrs (oldAttrs: rec {
src = builtins.fetchGit {
url = "https://code.cronyakatsuki.xyz/crony/dmenu";
rev = "10dcddf14b38cfd965ab27f084139513baed70bf";
};
}))
];
}