Update
Some checks failed
ssh-test / ssh-test (push) Failing after 40s

This commit is contained in:
iFargle 2023-12-11 16:45:00 +09:00
parent 1fba61dc5e
commit e6bb9c9722
2 changed files with 2 additions and 1 deletions

View file

@ -54,6 +54,7 @@ nix develop -c /etc/nixos/git/docs/setup.sh
* [ ] Figure out what the home-manager `account` options are for. * [ ] Figure out what the home-manager `account` options are for.
* [ ] Security hardening * [ ] Security hardening
* [ ] Edit the hosts file * [ ] Edit the hosts file
* [ ] home-manager/common/software/cli/bash.nix - Break this out for theming -- Currently statically set to 'gruvbox'
* [ ] cronjobs * [ ] cronjobs
* [ ] Change wallpaper at a certain time of day * [ ] Change wallpaper at a certain time of day
* [ ] Automatic git pull of this repo * [ ] Automatic git pull of this repo

View file

@ -84,7 +84,7 @@
# Devshell for bootstrapping; acessible via 'nix develop' # Devshell for bootstrapping; acessible via 'nix develop'
devShells = libx.forAllSystems (system: devShells = libx.forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system}; let pkgs = nixpkgs.legacyPackages.${system};
in import ./shell.nix { inherit pkgs sops-nix; } in import ./shell.nix { inherit pkgs sops-nix deploy-rs; }
); );
}; };
} }