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 d8ea208
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,22 @@
homePath = "/tmp";
username = "home";
extraModules = [{
home.stateVersion = "23.11";
# Disable some modules
home-manager = {
darwin.enable = false;
cli = {
irssi.enable = false;
nixpkgs.enable = false;
nnn.enable = false;
ssh.enable = false;
};
editor = {
emacs.enable = false;
helix.enable = false;
};
meta.enable = false;
};
# Disable systemd services/sockets/timers/etc.
systemd.user = {
automounts = pkgs.lib.mkForce { };
Expand Down

0 comments on commit d8ea208

Please sign in to comment.