Compare commits
No commits in common. "344903ec9b68d40f8116b9b01bd6b469b4fd409c" and "42af96b6e6df7175428a588c6a279a7899771ce2" have entirely different histories.
344903ec9b
...
42af96b6e6
@ -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 = {
|
||||||
|
@ -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;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,31 +1,33 @@
|
|||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
{
|
{
|
||||||
"AstroNvim/AstroNvim",
|
"AstroNvim/AstroNvim",
|
||||||
version = "^4", -- Remove version tracking to elect for nighly AstroNvim
|
version = "^4", -- Remove version tracking to elect for nighly AstroNvim
|
||||||
import = "astronvim.plugins",
|
import = "astronvim.plugins",
|
||||||
opts = { -- AstroNvim options must be set here with the `import` key
|
opts = { -- AstroNvim options must be set here with the `import` key
|
||||||
mapleader = " ", -- This ensures the leader key must be configured before Lazy is set up
|
mapleader = " ", -- This ensures the leader key must be configured before Lazy is set up
|
||||||
maplocalleader = ",", -- This ensures the localleader key must be configured before Lazy is set up
|
maplocalleader = ",", -- This ensures the localleader key must be configured before Lazy is set up
|
||||||
icons_enabled = true, -- Set to false to disable icons (if no Nerd Font is available)
|
icons_enabled = true, -- Set to false to disable icons (if no Nerd Font is available)
|
||||||
pin_plugins = nil, -- Default will pin plugins when tracking `version` of AstroNvim, set to true/false to override
|
pin_plugins = nil, -- Default will pin plugins when tracking `version` of AstroNvim, set to true/false to override
|
||||||
update_notifications = true, -- Enable/disable notification about running `:Lazy update` twice to update pinned plugins
|
update_notifications = true, -- Enable/disable notification about running `:Lazy update` twice to update pinned plugins
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{ import = "community" },
|
{ import = "community" },
|
||||||
{ import = "plugins" },
|
{ import = "plugins" },
|
||||||
} --[[@as LazySpec]], {
|
} --[[@as LazySpec]], {
|
||||||
-- Configure any other `lazy.nvim` configuration options here
|
-- Configure any other `lazy.nvim` configuration options here
|
||||||
install = { colorscheme = { "astrodark", "habamax" } },
|
install = { colorscheme = { "astrodark", "habamax" } },
|
||||||
ui = { backdrop = 100 },
|
ui = { backdrop = 100 },
|
||||||
performance = {
|
performance = {
|
||||||
rtp = {
|
rtp = {
|
||||||
-- disable some rtp plugins, add more to your liking
|
-- disable some rtp plugins, add more to your liking
|
||||||
disabled_plugins = {
|
disabled_plugins = {
|
||||||
"gzip",
|
"gzip",
|
||||||
"tarPlugin",
|
"netrwPlugin",
|
||||||
"tohtml",
|
"tarPlugin",
|
||||||
"zipPlugin",
|
"tohtml",
|
||||||
},
|
"zipPlugin",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
},
|
||||||
} --[[@as LazyConfig]])
|
} --[[@as LazyConfig]])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user