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