Added nextcloud
This commit is contained in:
parent
967aedee1a
commit
469f57c2d8
@ -6,6 +6,7 @@
|
|||||||
./helix.nix
|
./helix.nix
|
||||||
./librewolf.nix
|
./librewolf.nix
|
||||||
./shell.nix
|
./shell.nix
|
||||||
|
./nextcloud.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
8
modules/home/programs/nextcloud.nix
Normal file
8
modules/home/programs/nextcloud.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.nextcloud-client = {
|
||||||
|
enable = true;
|
||||||
|
startInBackground = true;
|
||||||
|
};
|
||||||
|
}
|
@ -1,6 +1,10 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
./keyring.nix
|
||||||
|
];
|
||||||
|
|
||||||
programs.hyprland = {
|
programs.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.unstable.hyprland;
|
package = pkgs.unstable.hyprland;
|
||||||
|
7
modules/system/desktop/keyring.nix
Normal file
7
modules/system/desktop/keyring.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
|
||||||
|
security.pam.services.greetd.enableGnomeKeyring = true;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user