nix/modules/home-manager/linux.nix

24 lines
336 B
Nix
Raw Normal View History

2023-10-05 13:43:28 -05:00
{
outputs,
pkgs,
...
}: {
imports = with outputs.homeManagerModules; [
common
];
programs.fish = {
shellAliases = {
sctl = "sudo systemctl";
sctlu = "systemctl --user";
};
};
home.packages = [
(pkgs.buildEnv {
name = "my-linux-scripts";
paths = [./scripts/linux];
})
];
}