forked from foxora/nix
init
This commit is contained in:
commit
850d3c539b
66 changed files with 6115 additions and 0 deletions
33
homes/modules/services/dunst.nix
Normal file
33
homes/modules/services/dunst.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ config, inputs, pkgs, ... }:
|
||||
let
|
||||
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
libnotify
|
||||
];
|
||||
|
||||
services.dunst = {
|
||||
enable = true;
|
||||
settings = {
|
||||
global = {
|
||||
monitor = "DP-3"; # second monitor
|
||||
origin = "top-left";
|
||||
layer = "top"; # above windows, below fullscreen
|
||||
offset = "(16, 24)";
|
||||
|
||||
padding = 4;
|
||||
gap_size = 4;
|
||||
frame_width = 2;
|
||||
|
||||
font = "DepartureMono Nerd Font 8";
|
||||
|
||||
corner_radius = 12;
|
||||
icon_corner_radius = 12;
|
||||
|
||||
progress_bar = true;
|
||||
progress_bar_height = 16;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue