20 lines
361 B
Nix
20 lines
361 B
Nix
{
|
|
description = "Dunst Config";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... }@inputs:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in {
|
|
packages.${system} = {
|
|
default = pkgs.dunst.overrideAttrs (oldAttrs: {
|
|
configFile = ./dunstrc;
|
|
});
|
|
};
|
|
};
|
|
}
|