11 lines
185 B
Nix
11 lines
185 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
nextcloud-client
|
|
];
|
|
|
|
wayland.windowManager.hyprland.settings.exec-once = [
|
|
"setsid uwsm app -- nextcloud --background"
|
|
];
|
|
}
|
|
|