aboutsummaryrefslogtreecommitdiff
path: root/nix/mkHomeManagerConfiguration.nix (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-10-22feat(home/packages): install the tool x509-infoFranck Cuny1-0/+1
2022-10-03feat(home/packages): install gh-ssh-keysFranck Cuny1-0/+1
Add a new input to the flake configuration to install `gh-ssh-keys`.
2022-09-26feat(naersk): use naersk to build packages with rustFranck Cuny1-2/+8
naersk makes it simple to build rust project in nix. For this to work, `mkSystem` and `mkHomeManagerConfiguration` needs to pass naersk to my overlays. I dropped the support to run the tools with `nix run .#tools...`: I don't use this in practice and it's not making things simpler. I dropped `nix-linter` from the check, it's reporting many errors without helping me to fix them.
2022-09-22ref(home-manager): don't use home-manager when building the hostFranck Cuny1-0/+28
When rebuilding the host (through `nixos-rebuild switch --flake`) I don't want to rebuild also my home-manager configuration. I want these to be two different steps. I rebuild the home-manager configuration more frequently and it's a waste of time and CPU to rebuild the world every time. This is a pretty large refactoring: - move checks back into the flake: if I modify a check, the configuration for `pre-commits` is not regenerated, as the file with the checks is not monitored with `direnv` (I could probably configure it for it, but not now) - remove `home.nix` from the host level configuration - introduce a `mkHomeManagerConfiguration` function to manage the different user@host - fix a warning with the rust overlay