Starting to impliment nix-on-droid

This commit is contained in:
2024-09-13 20:41:00 -03:00
parent 7ba107288a
commit 646c06a9cf
2 changed files with 190 additions and 1 deletions

View File

@@ -5,6 +5,12 @@
# Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# Nix-on-droid
nix-on-droid = {
url = "github:nix-community/nix-on-droid/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
# NUR
nur.url = "github:nix-community/NUR";
@@ -39,6 +45,7 @@
nur,
stylix,
home-manager,
nix-on-droid,
...
}: let
system = "x86_64-linux";
@@ -205,5 +212,14 @@
./home/shell
];
};
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
pkgs = import nixpkgs {system = "aarch64-linux";};
modules = [
./modules/system.nix
./home
./home/shell
];
};
};
}