Dwm: Difference between revisions

imported>Sikmir
m Missed ;
imported>Sikmir
m Fix typos
Line 18: Line 18:
nixpkgs.overlays = [
nixpkgs.overlays = [
   (self: super: {
   (self: super: {
     dwn = super.dwm.overrideAttrs (oldAttrs: rec {
     dwm = super.dwm.overrideAttrs (oldAttrs: rec {
       # ...
       # ...
     });
     });
Line 36: Line 36:
nixpkgs.overlays = [
nixpkgs.overlays = [
   (self: super: {
   (self: super: {
     dwn = super.dwm.overrideAttrs (oldAttrs: rec {
     dwm = super.dwm.overrideAttrs (oldAttrs: rec {
       patches = [
       patches = [
         #Your patches here
         #Your patches here
       ]
       ];
     })
     });
   })
   })
];
];