aboutsummaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-09-22 18:05:34 -0700
committerFranck Cuny <franck@fcuny.net>2022-09-22 18:05:34 -0700
commit4f1513dfa4fc22240ab7dcbe1c60c14f827645a7 (patch)
treeb81a45ae768dc2620d54e3b6a41b2c485d1f6aac /README.org
parentref(flake): move all the checks to external module (diff)
downloadinfra-4f1513dfa4fc22240ab7dcbe1c60c14f827645a7.tar.gz
ref(home-manager): don't use home-manager when building the host
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
Diffstat (limited to 'README.org')
-rw-r--r--README.org17
1 files changed, 16 insertions, 1 deletions
diff --git a/README.org b/README.org
index 39660ed..9e59a75 100644
--- a/README.org
+++ b/README.org
@@ -1,7 +1,22 @@
#+TITLE: world - nix configuration
* nixos
-To rebuild the host and home-manager:
+To rebuild the host:
#+begin_src sh
sudo nixos-rebuild switch --flake .
#+end_src
+
+or
+#+begin_src sh
+nix-rebuild-host
+#+end_src
+* home-manager
+To rebuild the configuration for =home-manager=:
+#+begin_src sh
+home-manager switch --flake .
+#+end_src
+* update flakes
+To update the flakes:
+#+begin_src sh
+nix flake update
+#+end_src