Compare commits
2 Commits
f76969136e
...
23d71b3a09
| Author | SHA1 | Date | |
|---|---|---|---|
| 23d71b3a09 | |||
| 945d3aa002 |
@@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
return {
|
||||||
|
"augmentcode/augment.vim",
|
||||||
|
enable = false,
|
||||||
|
}
|
||||||
@@ -5,6 +5,10 @@ return {
|
|||||||
servers = {
|
servers = {
|
||||||
lua_ls = {},
|
lua_ls = {},
|
||||||
nil_ls = {},
|
nil_ls = {},
|
||||||
|
vtsls = {},
|
||||||
|
},
|
||||||
|
codelens = {
|
||||||
|
enable = true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -7,10 +7,11 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.users.drew = { ... }:
|
home-manager.users.drew =
|
||||||
|
{ ... }:
|
||||||
{
|
{
|
||||||
# Add the path to the docker socket to the environment.
|
# Add the path to the docker socket to the environment.
|
||||||
programs.zsh.profileExtra = ''
|
programs.zsh.envExtra = ''
|
||||||
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
|
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -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";
|
||||||
|
|||||||
Reference in New Issue
Block a user