nix/flake.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2024-06-05 20:52:52 +02:00
{
inputs = {
2024-09-22 13:42:52 +02:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nix-on-droid = {
2024-09-22 14:59:17 +02:00
url = "github:nix-community/nix-on-droid/master";
2024-09-22 13:42:52 +02:00
inputs.nixpkgs.follows = "nixpkgs";
};
2024-07-02 22:10:44 +02:00
ags.url = "github:Aylur/ags";
2024-07-05 17:38:02 +02:00
stylix.url = "github:danth/stylix";
2024-08-04 00:37:19 +02:00
2024-09-08 17:04:51 +02:00
firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-09-22 13:42:52 +02:00
2024-07-18 14:48:36 +02:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-07-08 13:44:01 +02:00
};
2024-06-05 20:52:52 +02:00
2024-09-22 13:42:52 +02:00
outputs = { self, nixpkgs, nix-on-droid, ags, stylix, home-manager, ... } @ inputs: let
systemConfig = { modules }:
2024-08-21 09:02:49 +02:00
nixpkgs.lib.nixosSystem {
2024-09-22 13:42:52 +02:00
specialArgs = { inherit inputs; };
2024-09-15 10:00:51 +02:00
modules = modules ++ [stylix.nixosModules.stylix home-manager.nixosModules.default];
2024-08-21 09:02:49 +02:00
};
2024-08-04 00:37:19 +02:00
in {
2024-09-22 13:42:52 +02:00
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
pkgs = import nixpkgs { system = "aarch64-linux"; };
2024-09-22 14:45:18 +02:00
modules = [ ./hosts/phone];
2024-09-22 13:42:52 +02:00
};
2024-08-04 00:37:19 +02:00
nixosConfigurations = {
desktop = systemConfig {
2024-09-22 13:42:52 +02:00
modules = [ ./hosts/desktop ];
2024-08-04 00:37:19 +02:00
};
laptop = systemConfig {
2024-09-22 13:42:52 +02:00
modules = [ ./hosts/laptop ];
2024-08-04 00:37:19 +02:00
};
2024-06-05 20:52:52 +02:00
};
};
}