diff --git a/flake.lock b/flake.lock index 2ab879a..5c730ef 100644 --- a/flake.lock +++ b/flake.lock @@ -220,21 +220,6 @@ "type": "github" } }, - "flake-utils_3": { - "locked": { - "lastModified": 1652776076, - "narHash": "sha256-gzTw/v1vj4dOVbpBSJX4J0DwUR6LIyXo7/SuuTJp1kM=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "04c1b180862888302ddfb2e3ad9eaa63afc60cf8", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, "format-all": { "flake": false, "locked": { @@ -272,27 +257,6 @@ "type": "github" } }, - "home-manager_2": { - "inputs": { - "nixpkgs": [ - "nix-on-droid", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1653340164, - "narHash": "sha256-t6BPApyasx6FOv2cEVyFBXvkEDrknyUe7bngMbNSBkA=", - "owner": "nix-community", - "repo": "home-manager", - "rev": "e66f0ff69a6c0698b35034b842c4b68814440778", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "home-manager", - "type": "github" - } - }, "libnbtplusplus": { "flake": false, "locked": { @@ -366,28 +330,6 @@ "type": "github" } }, - "nix-on-droid": { - "inputs": { - "flake-utils": "flake-utils_3", - "home-manager": "home-manager_2", - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1650613939, - "narHash": "sha256-x+OlhRDWXpqFZKmeEOE+vXbmt9kiCe35rKVBcJo3gxQ=", - "owner": "t184256", - "repo": "nix-on-droid", - "rev": "e7e7d1347ffa88f8f67852a58a94d339c7d58fa0", - "type": "github" - }, - "original": { - "owner": "t184256", - "repo": "nix-on-droid", - "type": "github" - } - }, "nix-straight": { "flake": false, "locked": { @@ -643,7 +585,6 @@ "home-manager": "home-manager", "mozilla": "mozilla", "nix-doom-emacs": "nix-doom-emacs", - "nix-on-droid": "nix-on-droid", "nixpkgs": "nixpkgs_2", "nixpkgs-unstable": "nixpkgs-unstable", "polymc": "polymc", diff --git a/flake.nix b/flake.nix index 9f5adfe..0fee1ae 100644 --- a/flake.nix +++ b/flake.nix @@ -37,13 +37,9 @@ inputs.nixpkgs.follows = "nixpkgs"; inputs.emacs-overlay.follows = "emacs"; }; - nix-on-droid = { - url = "github:t184256/nix-on-droid"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; - outputs = { self, nixpkgs, nixpkgs-unstable, fenix, emacs, mozilla, sops-nix, home-manager, darwin, polymc, nix-doom-emacs, nix-on-droid }: + outputs = { self, nixpkgs, nixpkgs-unstable, fenix, emacs, mozilla, sops-nix, home-manager, darwin, polymc, nix-doom-emacs }: let baseModules = [ ./applications/utils-core.nix @@ -281,22 +277,5 @@ homeDirectory = "/home/nathan"; stateVersion = "21.11"; }; - - nixOnDroidConfigurations = { - # Galaxy Tab S7+ - tablet = nix-on-droid.lib.nixOnDroidConfiguration { - system = "aarch64-linux"; - config = ./droid.nix; - extraSpecialArgs = { - unstable = import nixpkgs-unstable { - config = { allowUnfree = true; }; - overlays = [ emacs.overlay ]; - system = "aarch64-linux"; - }; - fenix = fenix.packages.aarch64-linux; - doomEmacs = nix-doom-emacs.hmModule; - }; - }; - }; }; }