nixfiles/homes/castle.nix

10 lines
189 B
Nix
Raw Normal View History

2022-02-13 23:06:31 +00:00
{ pkgs, ... }:
{
2022-02-14 23:47:21 +00:00
# So home-manager will inject the sourcing of ~/.nix-profile/etc/profile.d/nix.sh
targets.genericLinux.enable = true;
2022-02-13 23:06:31 +00:00
programs = {
kakoune.enable = true;
};
}