12 lines
236 B
Nix
12 lines
236 B
Nix
{ config, ... }:
|
|
{
|
|
programs.nh = {
|
|
enable = true;
|
|
flake = "${config.xdg.userDirs.extraConfig.XDG_PERSIST_DIR}/dirs/Projects/nixos-config";
|
|
};
|
|
|
|
home.shellAliases = {
|
|
nhs = "nh os switch";
|
|
nht = "nh os test";
|
|
};
|
|
}
|