Skip to content

Commit

Permalink
flake.nix: disable some modules for faster evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Oct 5, 2023
1 parent 9fc397e commit 6c1456e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,20 @@
homePath = "/tmp";
username = "home";
extraModules = [{
home.stateVersion = "23.11";
# Disable some modules
home-manager = {
darwin.enable = false;
cli = {
enable = false;
git.enable = true;
htop.enable = true;
tmux.enable = true;
zsh.enable = true;
};
editor.helix.enable = false;
meta.enable = false;
};
# Disable systemd services/sockets/timers/etc.
systemd.user = {
automounts = pkgs.lib.mkForce { };
Expand Down

0 comments on commit 6c1456e

Please sign in to comment.