dotfiles/system/nixos/home-manager/desktop.nix

39 lines
635 B
Nix
Raw Normal View History

{ config, inputs, pkgs, username }:
{
imports = [
./modules/alacritty.nix
./modules/autorandr.nix
2023-12-14 23:59:56 +00:00
./modules/espanso.nix
2023-11-14 20:20:07 +00:00
./modules/i3.nix
];
services.dunst = {
enable = true;
settings = {
global = {
follow = "keyboard";
};
};
};
2024-01-04 21:51:46 +00:00
services.copyq.enable = true;
services.flameshot = {
enable = true;
settings = {
General = {
disabledTrayIcon = false;
saveAfterCopy = true;
savePath = "/home/${username}/Pictures/Screenshots";
showHelp = false;
uiColor = "#60a5fa";
};
};
};
2024-01-08 01:13:35 +00:00
programs.feh.enable = true;
}