Added nextcloud

This commit is contained in:
xeovalyte 2024-06-06 09:43:48 +02:00
parent 967aedee1a
commit 469f57c2d8
No known key found for this signature in database
4 changed files with 20 additions and 0 deletions

View File

@ -6,6 +6,7 @@
./helix.nix
./librewolf.nix
./shell.nix
./nextcloud.nix
];
home.packages = with pkgs; [

View File

@ -0,0 +1,8 @@
{ ... }:
{
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
}

View File

@ -1,6 +1,10 @@
{ config, pkgs, ... }:
{
imports = [
./keyring.nix
];
programs.hyprland = {
enable = true;
package = pkgs.unstable.hyprland;

View File

@ -0,0 +1,7 @@
{ ... }:
{
services.gnome.gnome-keyring.enable = true;
security.pam.services.greetd.enableGnomeKeyring = true;
}