Skip to content

Commit

Permalink
Disable some modules only for nix-on-droid
Browse files Browse the repository at this point in the history
  • Loading branch information
rake5k committed Oct 16, 2023
1 parent c2fd500 commit 4bf362a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions home/users/christian/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ in
custom = {
roles.homeage.enable = true;
users."${username}" = {
fonts.enable = true;
fonts.enable = !config.custom.roles.mobile.enable;
git.enable = true;
hardware = {
kmonad.enable = true;
xbindkeys.enable = true;
kmonad.enable = !config.custom.roles.mobile.enable;
xbindkeys.enable = !config.custom.roles.mobile.enable;
};
office.cli.enable = config.custom.roles.office.cli.enable;
shell.enable = true;
Expand Down

0 comments on commit 4bf362a

Please sign in to comment.