Compare commits

...

2 commits

3 changed files with 24 additions and 0 deletions

View file

@ -18,6 +18,13 @@ alias do := deployos
deployos host=defhost:
nh os switch -H {{host}} .
alias dro := deployRemoteOs
[group('nixos')]
deployRemoteOs host:
nixos-rebuild switch --flake .#{{host}} \
--target-host root@{{host}} \
--verbose --log-format internal-json |& nom --json
alias dd := deploydarwin
[group('darwin')]
deploydarwin host=defhost:

View file

@ -29,6 +29,7 @@ in {
man = enabled;
neo = enabled;
nh = enabled;
nix-output-monitor = enabled;
rbw = enabled;
ripgrep = enabled;
ssh = enabled;

View file

@ -0,0 +1,16 @@
{
lib,
config,
pkgs,
...
}: let
cfg = config.marleyos.programs.nix-output-monitor;
in {
options.marleyos.programs.nix-output-monitor.enable = lib.mkEnableOption "nix-output-monitor";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
nix-output-monitor
];
};
}