10 lines
189 B
Nix
10 lines
189 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# So home-manager will inject the sourcing of ~/.nix-profile/etc/profile.d/nix.sh
|
|
targets.genericLinux.enable = true;
|
|
|
|
programs = {
|
|
kakoune.enable = true;
|
|
};
|
|
}
|