aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2026-05-24 08:46:36 +0200
committerMartin Fischer <martin@push-f.com>2026-05-24 08:47:20 +0200
commit570404a2d6fe9a4e3602d73513a5d40275da747a (patch)
treef6230c421ffb0ebc1458102530c6aee2103360b4 /nixos
parent4f3062b02a871d3462633adeff8f813652bec216 (diff)
refactor: remove duplicate systemPackages
Accidentally introduced in 03d807abf43ecf3cc988f06a3dc242d6d480a385.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/profiles/workstation/android.nix9
-rw-r--r--nixos/profiles/workstation/default.nix3
2 files changed, 1 insertions, 11 deletions
diff --git a/nixos/profiles/workstation/android.nix b/nixos/profiles/workstation/android.nix
deleted file mode 100644
index 0b7a086..0000000
--- a/nixos/profiles/workstation/android.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ config, pkgs, ... }:
-
-{
- environment.systemPackages = with pkgs; [
- # CLI tools
- android-tools # for fastboot to install GrapheneOS
- go-mtpfs
- ];
-}
diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix
index 199c177..2c70f0e 100644
--- a/nixos/profiles/workstation/default.nix
+++ b/nixos/profiles/workstation/default.nix
@@ -19,7 +19,6 @@ in
./firefox.nix
./dev.nix
./create.nix
- ./android.nix
];
config = {
@@ -84,7 +83,7 @@ in
unzip
# Android
- android-tools
+ android-tools # for fastboot to install GrapheneOS
go-mtpfs
];