Compare commits
4 Commits
42af96b6e6
...
344903ec9b
Author | SHA1 | Date | |
---|---|---|---|
344903ec9b | |||
cdaf1fd04e | |||
3f14f52f51 | |||
a822ca69c5 |
@ -34,6 +34,8 @@
|
|||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
networking.firewall.enable = false;
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
extraSpecialArgs = {inherit inputs;};
|
extraSpecialArgs = {inherit inputs;};
|
||||||
users = {
|
users = {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
cfg = config.myConfig.programs.nextcloud;
|
cfg = config.myConfig.programs.nextcloud;
|
||||||
@ -10,6 +11,9 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
services.nextcloud-client.enable = true;
|
services.nextcloud-client = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.unstable.nextcloud-client;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,6 @@ 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",
|
||||||
@ -30,4 +29,3 @@ require("lazy").setup({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
} --[[@as LazyConfig]])
|
} --[[@as LazyConfig]])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user