75 lines
1.9 KiB
Nix
75 lines
1.9 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-22.11";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
rustybar = {
|
|
url = "github:mildlyfunctionalgays/rustybar";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
private.url = "git+ssh://git@github.com/artemist/nixos-config-private?ref=unified";
|
|
|
|
wip-pinebook-pro = {
|
|
url = "github:samueldr/wip-pinebook-pro";
|
|
flake = false;
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager, rustybar, private, wip-pinebook-pro, nixpkgs-unstable, ... } @ inputs:
|
|
let
|
|
makeSystem = conf: nixpkgs.lib.nixosSystem (nixpkgs.lib.recursiveUpdate conf
|
|
rec {
|
|
specialArgs = {
|
|
inherit inputs;
|
|
pkgs-unstable = import nixpkgs-unstable { config.allowUnfree = true; system = conf.system; };
|
|
};
|
|
modules = [
|
|
private.nixosModules.base
|
|
home-manager.nixosModules.home-manager
|
|
{
|
|
home-manager.extraSpecialArgs = specialArgs;
|
|
}
|
|
] ++ (conf.modules or [ ]);
|
|
});
|
|
in
|
|
{
|
|
nixosConfigurations.starlight = makeSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./system/starlight
|
|
private.nixosModules.starlight
|
|
];
|
|
};
|
|
|
|
nixosConfigurations.rainbowdash = makeSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./system/rainbowdash
|
|
];
|
|
};
|
|
|
|
nixosConfigurations.spike = makeSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./system/spike
|
|
];
|
|
};
|
|
|
|
nixosConfigurations.mistmane = makeSystem {
|
|
system = "aarch64-linux";
|
|
modules = [
|
|
./system/mistmane
|
|
];
|
|
};
|
|
|
|
};
|
|
}
|
|
|