Compare commits

..

No commits in common. "344903ec9b68d40f8116b9b01bd6b469b4fd409c" and "42af96b6e6df7175428a588c6a279a7899771ce2" have entirely different histories.

3 changed files with 31 additions and 35 deletions

View File

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

View File

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

View File

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