Move home-manager related files into home directory

This commit is contained in:
2022-08-19 01:54:13 +02:00
parent 56a100f0c6
commit 8f68ada082
50 changed files with 8 additions and 11 deletions

24
home/services/dunst.nix Normal file
View File

@@ -0,0 +1,24 @@
{ pkgs, ... }:
{
services.dunst = {
enable = true;
iconTheme = {
package = pkgs.gnome.adwaita-icon-theme;
name = "Adwaita";
size = "32x32";
};
settings = {
global = {
geometry = "300x5-30+50";
transparency = 10;
frame_color = "#eceff1";
font = "Droid Sans 9";
};
urgency_normal = {
background = "#37474f";
foreground = "#eceff1";
timeout = 10;
};
};
};
}