chore: update pre-commit
buildbot/nix-eval Build done.
buildbot/nix-build Build done.
buildbot/nix-effects Build done.
Update manifest chart versions / update-manifests (push) Successful in 3s

This commit is contained in:
Greg Hellings
2026-05-10 01:48:45 -05:00
parent 85cdfce6a9
commit 10d6f85b5e
9 changed files with 34 additions and 36 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
# This allows things like SSH in distrobox to read the config file just fine
home.file.".ssh/config" = {
target = ".ssh/config_source";
onChange = ''cat ~/.ssh/config_source > ~/.ssh/config && chmod 600 ~/.ssh/config'';
onChange = "cat ~/.ssh/config_source > ~/.ssh/config && chmod 600 ~/.ssh/config";
};
programs.ssh = {
enable = true;
+3 -6
View File
@@ -10,7 +10,8 @@ let
let
inherit (metadata.hosts.${host}) system;
pkgs = nixpkgs.${system};
username = if builtins.hasAttr "user" metadata.hosts.${host} then metadata.hosts.${host}.user else "greg";
username =
if builtins.hasAttr "user" metadata.hosts.${host} then metadata.hosts.${host}.user else "greg";
in
top.hmunstable.lib.homeManagerConfiguration {
inherit pkgs;
@@ -31,8 +32,4 @@ let
};
};
in
(
lib.genAttrs
(builtins.attrNames (builtins.readDir ./hosts))
user
)
(lib.genAttrs (builtins.attrNames (builtins.readDir ./hosts)) user)
+14 -10
View File
@@ -4,9 +4,11 @@
...
}:
let
python = pkgs.python312.withPackages (p: with p; [
ipython
]);
python = pkgs.python312.withPackages (
p: with p; [
ipython
]
);
in
{
# Disables hitting local cache
@@ -32,13 +34,15 @@ in
podman
poetry
pre-commit
(pulumi.withPackages (p: with p; [
pulumi-aws-native
pulumi-command
pulumi-go
pulumi-nodejs
pulumi-python
]))
(pulumi.withPackages (
p: with p; [
pulumi-aws-native
pulumi-command
pulumi-go
pulumi-nodejs
pulumi-python
]
))
python
rustc
terraform