chore: import nixos files

This commit is contained in:
Michael Mandl 2024-07-09 21:58:33 +02:00
parent 5ea6b4bd06
commit 6823f37d6b
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
42 changed files with 1520 additions and 60 deletions

34
sway/dunst.nix Normal file
View file

@ -0,0 +1,34 @@
{ ... }:
{
services.dunst = {
enable = true;
settings = {
global = {
follow = "keyboard";
font = "DejaVu Sans Mono 11";
frame_width = 1;
};
urgency_low = {
frame_color = "#268bd2";
foreground = "#eee8d5";
background = "#002b36";
timeout = 4;
};
urgency_normal = {
frame_color = "#859900";
foreground = "#eee8d5";
background = "#002b36";
timeout = 6;
};
urgency_critical = {
frame_color = "#dc322f";
foreground = "#eee8d5";
background = "#002b36";
timeout = 8;
};
};
};
}