-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18c0827
commit e6321d2
Showing
3 changed files
with
42 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ config, lib, ... }: | ||
|
||
{ | ||
imports = [ ./default.nix ]; | ||
|
||
home = { | ||
# Not sure why this variable is not filling up automatically | ||
sessionPath = [ "${config.home.homeDirectory}/.nix-profile/bin" ]; | ||
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 = lib.mkForce { }; | ||
mounts = lib.mkForce { }; | ||
paths = lib.mkForce { }; | ||
services = lib.mkForce { }; | ||
sessionVariables = lib.mkForce { }; | ||
slices = lib.mkForce { }; | ||
sockets = lib.mkForce { }; | ||
targets = lib.mkForce { }; | ||
timers = lib.mkForce { }; | ||
}; | ||
|
||
manual.manpages.enable = false; | ||
} |