nix/modules/home-manager/linux.nix

26 lines
388 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";
2023-10-06 12:44:36 -05:00
bt = "bluetoothctl";
2023-10-06 13:05:15 -05:00
pa = "pulsemixer";
2023-10-05 13:43:28 -05:00
sctlu = "systemctl --user";
};
};
home.packages = [
(pkgs.buildEnv {
name = "my-linux-scripts";
paths = [./scripts/linux];
})
];
}