diff --git a/nixos/roles/physical/desktop/common/apps/default.nix b/nixos/roles/physical/desktop/common/apps/default.nix index 7314f09..c87d619 100644 --- a/nixos/roles/physical/desktop/common/apps/default.nix +++ b/nixos/roles/physical/desktop/common/apps/default.nix @@ -3,5 +3,6 @@ ./steam.nix ./pwvucontrol.nix ./wine.nix + ./etcher.nix ]; } diff --git a/nixos/roles/physical/desktop/common/apps/etcher.nix b/nixos/roles/physical/desktop/common/apps/etcher.nix new file mode 100644 index 0000000..87b91d3 --- /dev/null +++ b/nixos/roles/physical/desktop/common/apps/etcher.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + etcher + ]; +}