Compare commits
2 commits
cc09be2f74
...
d323003c5c
Author | SHA1 | Date | |
---|---|---|---|
d323003c5c | |||
c35341d9e3 |
3 changed files with 24 additions and 0 deletions
7
Justfile
7
Justfile
|
@ -18,6 +18,13 @@ alias do := deployos
|
||||||
deployos host=defhost:
|
deployos host=defhost:
|
||||||
nh os switch -H {{host}} .
|
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
|
alias dd := deploydarwin
|
||||||
[group('darwin')]
|
[group('darwin')]
|
||||||
deploydarwin host=defhost:
|
deploydarwin host=defhost:
|
||||||
|
|
|
@ -29,6 +29,7 @@ in {
|
||||||
man = enabled;
|
man = enabled;
|
||||||
neo = enabled;
|
neo = enabled;
|
||||||
nh = enabled;
|
nh = enabled;
|
||||||
|
nix-output-monitor = enabled;
|
||||||
rbw = enabled;
|
rbw = enabled;
|
||||||
ripgrep = enabled;
|
ripgrep = enabled;
|
||||||
ssh = enabled;
|
ssh = enabled;
|
||||||
|
|
16
modules/home/programs/cli/nix-output-monitor/default.nix
Normal file
16
modules/home/programs/cli/nix-output-monitor/default.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue