21 lines
512 B
Nix
21 lines
512 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
myConfig,
|
|
...
|
|
}: {
|
|
wayland.windowManager.hyprland.settings = {
|
|
exec-once = [
|
|
"[workspace 20 silent] kitty --single-instance --hold fastfetch"
|
|
"[workspace 20 silent] firefox"
|
|
"[workspace 1] kitty --single-instance --hold fastfetch"
|
|
"hyprctl setcursor Bibata-Modern-Ice 24"
|
|
|
|
"solaar -w hide"
|
|
"matugen image /home/${myConfig.essentials.Username}/Pictures/Wallpapers/ultrawide-nixos-default.png"
|
|
"sunshine"
|
|
"moondeck-buddy"
|
|
];
|
|
};
|
|
}
|