nixos-configs/lib.nix
matt1432 ef22af1ee9
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: get rid of overlays in common
2024-06-08 23:50:13 -04:00

61 lines
1.3 KiB
Nix

{
grim-hyprland,
home-manager,
nix-on-droid,
nixpkgs,
nixpkgs-wayland,
...
} @ inputs: rec {
# Import pkgs from a nixpkgs
mkPkgs = system: input:
import input {
inherit system;
config.allowUnfree = true;
overlays = [
grim-hyprland.overlays.default
nixpkgs-wayland.overlays.default
];
};
# Function that makes the attrs that make up the specialArgs
mkArgs = system:
inputs
// {
pkgs = mkPkgs system nixpkgs;
};
# Default system
mkNixOS = mods:
nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
specialArgs = mkArgs system;
modules =
[
{home-manager.extraSpecialArgs = specialArgs;}
./common
]
++ mods;
};
mkNixOnDroid = mods:
nix-on-droid.lib.nixOnDroidConfiguration rec {
extraSpecialArgs = mkArgs "aarch64-linux";
home-manager-path = home-manager.outPath;
pkgs = extraSpecialArgs.pkgs;
modules =
[
{
options = with pkgs.lib; {
environment.variables.FLAKE = mkOption {
type = with types; nullOr str;
};
};
}
{home-manager = {inherit extraSpecialArgs;};}
./common/nix-on-droid.nix
]
++ mods;
};
}