summaryrefslogtreecommitdiff
path: root/awesome-git.nix
blob: fb09048c521431a251554e9799993deff8e77a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ inputs }:
self: super: {
  awesome-git =
    with super;
    awesome.overrideAttrs (oldAttrs: rec {
      version = "git";
      src = fetchGit {
        url = "https://github.com/awesomeWM/awesome";
        ref = "master";
      };
      patches = [ ];
    });
}