mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
25 lines
340 B
Nix
25 lines
340 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
## Hyprland
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
${
|
|
lib.strings.concatMapStringsSep
|
|
"\n"
|
|
(app: "exec-once = sleep 1 && ${app}")
|
|
config.ar.home.desktop.startupApps
|
|
}
|
|
'';
|
|
|
|
## Sway
|
|
|
|
# dconf = {
|
|
# enable = true;
|
|
# settings = {
|
|
# };
|
|
# };
|
|
}
|