From 72ff7ce6de8de68b6ce2bc08bef532e762f07ba0 Mon Sep 17 00:00:00 2001 From: KnightArtorias Date: Mon, 19 Jan 2026 16:05:05 +0000 Subject: [PATCH] Add belna etcher --- nixos/roles/physical/desktop/common/apps/default.nix | 1 + nixos/roles/physical/desktop/common/apps/etcher.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 nixos/roles/physical/desktop/common/apps/etcher.nix 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 + ]; +}