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:
|
||||
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:
|
||||
|
|
|
@ -29,6 +29,7 @@ in {
|
|||
man = enabled;
|
||||
neo = enabled;
|
||||
nh = enabled;
|
||||
nix-output-monitor = enabled;
|
||||
rbw = enabled;
|
||||
ripgrep = 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