2023-11-07 06:39:10 +00:00
|
|
|
{ config, inputs, pkgs }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./modules/alacritty.nix
|
2023-12-12 20:29:00 +00:00
|
|
|
./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
|
2023-11-07 06:39:10 +00:00
|
|
|
];
|
|
|
|
|
2023-12-27 15:18:32 +00:00
|
|
|
services.dunst = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
global = {
|
|
|
|
follow = "keyboard";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-11-07 06:39:10 +00:00
|
|
|
xdg.configFile.wallpaper = {
|
|
|
|
source = ../../../config/wallpaper;
|
|
|
|
recursive = true;
|
|
|
|
};
|
|
|
|
}
|