niksos/modules/gui/gtklock.nix

15 lines
209 B
Nix
Raw Normal View History

2023-09-09 00:06:30 +02:00
{
pkgs,
config',
...
}: {
2023-09-09 00:17:08 +02:00
home.packages = with pkgs; [
2023-09-09 00:06:30 +02:00
gtklock
2023-09-09 00:17:08 +02:00
];
2023-09-09 00:06:30 +02:00
2023-09-09 00:17:08 +02:00
xdg.configFile."gtklock/config.ini".text = ''
2023-09-09 00:06:30 +02:00
[main]
gtk-theme=${config'.gtk-theme}
'';
}