24 lines
336 B
Nix
24 lines
336 B
Nix
|
{
|
||
|
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];
|
||
|
})
|
||
|
];
|
||
|
}
|