Starting to impliment nix-on-droid
This commit is contained in:
16
flake.nix
16
flake.nix
@@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user