Compare commits

...

4 Commits

3 changed files with 35 additions and 31 deletions

View File

@ -34,6 +34,8 @@
shell = pkgs.zsh;
};
networking.firewall.enable = false;
home-manager = {
extraSpecialArgs = {inherit inputs;};
users = {

View File

@ -1,6 +1,7 @@
{
lib,
config,
pkgs,
...
}: let
cfg = config.myConfig.programs.nextcloud;
@ -10,6 +11,9 @@ in {
};
config = lib.mkIf cfg.enable {
services.nextcloud-client.enable = true;
services.nextcloud-client = {
enable = true;
package = pkgs.unstable.nextcloud-client;
};
};
}

View File

@ -22,7 +22,6 @@ require("lazy").setup({
-- disable some rtp plugins, add more to your liking
disabled_plugins = {
"gzip",
"netrwPlugin",
"tarPlugin",
"tohtml",
"zipPlugin",
@ -30,4 +29,3 @@ require("lazy").setup({
},
},
} --[[@as LazyConfig]])