feat(waydroid): Disable waydroid

This commit is contained in:
ulic-youthlic 2025-09-22 18:04:01 +08:00
parent f91c01c081
commit 7a3f12da53
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
5 changed files with 0 additions and 22 deletions

View file

@ -191,11 +191,6 @@
owner = "nix-community"; owner = "nix-community";
repo = "NUR"; repo = "NUR";
}; };
nur-ataraxiasjel = {
type = "github";
owner = "AtaraxiaSjel";
repo = "nur";
};
nixvim = { nixvim = {
type = "github"; type = "github";

View file

@ -34,7 +34,6 @@
enable = true; enable = true;
unixName = "david"; unixName = "david";
}; };
waydroid.enable = true;
}; };
programs = { programs = {
bash.enable = true; bash.enable = true;

View file

@ -9,7 +9,6 @@ in
./editor-runtime.nix ./editor-runtime.nix
./radicle-ci-broker.nix ./radicle-ci-broker.nix
./wallpapers.nix ./wallpapers.nix
./waydroid-script.nix
./rime-yuhaostar.nix ./rime-yuhaostar.nix
./nixvim.nix ./nixvim.nix

View file

@ -19,7 +19,6 @@ in
# Nur # Nur
./nur.nix ./nur.nix
./nur-ataraxiasejel.nix
] ]
|> map (file: import file args) |> map (file: import file args)
|> (overlays: (lib.composeManyExtensions overlays) final prev) |> (overlays: (lib.composeManyExtensions overlays) final prev)

View file

@ -1,14 +0,0 @@
{ inputs, ... }:
_final: prev:
let
inherit (prev.stdenv.hostPlatform) system;
in
{
nur = prev.nur // {
repos = prev.nur.repos // {
ataraxiasjel = prev.nur.repos.ataraxiasjel // {
inherit (inputs.nur-ataraxiasjel.packages.${system}) waydroid-script;
};
};
};
}