tangled
alpha
login
or
join now
karitham.dev
/
dotfiles
nix all the things
0
fork
atom
overview
issues
pulls
pipelines
disable nano if helix is enabled
karitham.dev
1 month ago
b117eb69
baaa9e66
verified
This commit was signed with the committer's
known signature
.
karitham.dev
SSH Key Fingerprint:
SHA256:ODeRMGYuG7M/0G+fRF6IfwUk7r5AgG5MYdFTN+uvimc=
options
unified
split
Changed files
+2
modules
nixos
shell.nix
+2
modules/nixos/shell.nix
···
14
14
config ? home-manager
15
15
)
16
16
config.home-manager.users.${username}.home.sessionVariables.EDITOR;
17
17
+
18
18
+
programs.nano.enable = !((config ? home-manager) && config.home-manager.users.${username}.programs.helix.enable);
17
19
};
18
20
}