Revert "Changed: Neovim Conf"

This reverts commit 75c06f5780.
This commit is contained in:
2025-03-26 14:21:21 +01:00
parent 0331d55c34
commit 4549818099
17 changed files with 6 additions and 409 deletions

View File

@@ -4,7 +4,11 @@
catppuccin-bat,
...
}: {
#home.packages = with pkgs; [];
home.packages = with pkgs; [
# docker
docker-compose
];
programs = {
tmux = {

View File

@@ -1,21 +0,0 @@
{ pkgs, ... }: {
virtualisation.docker = {
enable = true;
rootless = {
enable = true;
setSockettVariable = true;
};
daemon.settings = {
data-root = "/docker/containers";
userland-proxy = false;
experimental = true;
metrics-addr = "0.0.0.0:9323";
ipv6 = true;
fixed-cidr-v6 = "fd00::/80";
};
};
users.extraGroups.docker.members = [ "username-with-access-to-socket" ];
}

View File

@@ -1,19 +0,0 @@
{
pkgs,
config,
...
}: {
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
plugins = with pkgs.vimPlugins; [
nvim-tree-lua
nvim-treesitter
nvim-treesitter.withAllGrammars
];
};
}