Compare commits
2 Commits
decd485e19
...
929ecd64b0
Author | SHA1 | Date | |
---|---|---|---|
929ecd64b0 | |||
fc36594f02 |
@@ -25,9 +25,10 @@
|
||||
./home/hyprland.nix # Hyprland window manager user config
|
||||
./home/home-manager.nix # Base user environment
|
||||
./home/hyprlock.nix # Hyprlock screen lock user config
|
||||
./home/rofi.nix # Rofi user config
|
||||
./home/ghostty.nix # Ghostty user config
|
||||
./home/gtk.nix # GTK user config
|
||||
./home/rofi.nix # Rofi theme/config
|
||||
./home/ghostty.nix # Ghostty config
|
||||
./home/gtk.nix # GTK theme
|
||||
./home/nextcloud.nix # Nextcloud autostart
|
||||
];
|
||||
};
|
||||
|
||||
|
11
modules/home/nextcloud.nix
Normal file
11
modules/home/nextcloud.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{lib, ...}: {
|
||||
services.nextcloud-client = {
|
||||
enable = true;
|
||||
startInBackground = true;
|
||||
};
|
||||
systemd.user.services.nextcloud-client = {
|
||||
Unit = {
|
||||
After = lib.mkForce "graphical-session.target";
|
||||
};
|
||||
};
|
||||
}
|
@@ -30,6 +30,7 @@ in {
|
||||
|
||||
# cli tools
|
||||
jq
|
||||
yq-go
|
||||
pciutils
|
||||
glxinfo
|
||||
btop
|
||||
|
Reference in New Issue
Block a user