Changed: Neovim Conf

This commit is contained in:
2025-03-26 13:26:52 +01:00
parent 7ca8e843c2
commit 75c06f5780
18 changed files with 443 additions and 6 deletions

View File

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

21
home/programs/docker.nix Normal file
View File

@@ -0,0 +1,21 @@
{ 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" ];
}