Compare commits

..

2 Commits

5 changed files with 24 additions and 10 deletions

View File

@@ -1,8 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
# Podman is enabled at the system level.
home.packages = with pkgs; [ home.packages = with pkgs; [
podman-compose docker-compose
]; ];
} }

View File

@@ -0,0 +1,4 @@
return {
"augmentcode/augment.vim",
enable = false,
}

View File

@@ -5,6 +5,10 @@ return {
servers = { servers = {
lua_ls = {}, lua_ls = {},
nil_ls = {}, nil_ls = {},
vtsls = {},
},
codelens = {
enable = true,
}, },
}, },
}, },

View File

@@ -7,11 +7,12 @@
}; };
}; };
home-manager.users.drew = { ... }: home-manager.users.drew =
{ { ... }:
# Add the path to the docker socket to the environment. {
programs.zsh.profileExtra = '' # Add the path to the docker socket to the environment.
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock programs.zsh.envExtra = ''
''; export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
}; '';
};
} }

View File

@@ -11,6 +11,7 @@ in
"/features/development/development.nix" "/features/development/development.nix"
"/features/development/docker.nix" "/features/development/docker.nix"
"/features/development/haskell.nix" "/features/development/haskell.nix"
"/features/development/typescript.nix"
"/features/eww" "/features/eww"
"/features/gaming.nix" "/features/gaming.nix"
"/features/linux-desktop.nix" "/features/linux-desktop.nix"
@@ -20,6 +21,12 @@ in
(import ../../../home-manager/features/wallpaper.nix monitors) (import ../../../home-manager/features/wallpaper.nix monitors)
]; ];
# This config file is needed for nix shell to allow unfree programs. I'm not
# sure why this isn't a home-manager option.
home.file.".config/nixpkgs/config.nix".text = ''
{ allowUnfree = true; }
'';
home.stateVersion = "24.11"; home.stateVersion = "24.11";
home.username = "drew"; home.username = "drew";