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