pub-solar-os/flake.nix

89 lines
2.5 KiB
Nix
Raw Normal View History

2019-12-03 05:18:30 +00:00
{
2019-12-05 08:36:15 +00:00
description = "A highly structured configuration database.";
inputs =
{
nixos.url = "nixpkgs/nixos-unstable";
2021-04-22 03:44:15 +00:00
latest.url = "nixpkgs";
2021-04-02 02:10:24 +00:00
devos.url = "path:./lib"; # TODO: outfactor into separate repo
devos.inputs = {
nixpkgs.follows = "nixos";
2021-04-18 22:45:51 +00:00
# deploy.inputs = {
# flake-compat.follows = "flake-compat";
# naersk.follows = "naersk";
# nixpkgs.follows = "nixos";
# };
2021-04-02 02:10:24 +00:00
};
2021-03-02 03:30:47 +00:00
ci-agent = {
url = "github:hercules-ci/hercules-ci-agent";
inputs = { nix-darwin.follows = "darwin"; nixos-20_09.follows = "nixos"; nixos-unstable.follows = "latest"; };
2021-03-02 03:30:47 +00:00
};
darwin.url = "github:LnL7/nix-darwin";
2021-04-22 03:44:15 +00:00
darwin.inputs.nixpkgs.follows = "latest";
2021-03-23 14:28:25 +00:00
home.url = "github:nix-community/home-manager";
home.inputs.nixpkgs.follows = "nixos";
naersk.url = "github:nmattia/naersk";
2021-04-22 03:44:15 +00:00
naersk.inputs.nixpkgs.follows = "latest";
2021-03-02 03:30:47 +00:00
nixos-hardware.url = "github:nixos/nixos-hardware";
2021-04-02 02:10:24 +00:00
pkgs.url = "path:./pkgs";
pkgs.inputs.nixpkgs.follows = "nixos";
};
2021-04-22 03:44:15 +00:00
outputs = inputs@{ self, pkgs, devos, nixos, ci-agent, home, nixos-hardware, nur, ... }:
2021-04-02 02:10:24 +00:00
devos.lib.mkFlake {
2021-04-22 03:44:15 +00:00
inherit self inputs;
channelsConfig = { allowUnfree = true; };
channels = {
nixos = {
overlays = [
2021-04-22 03:44:15 +00:00
(devos.lib.pathsIn ./overlays)
./pkgs/default.nix
pkgs.overlay # for `srcs`
2021-04-22 03:44:15 +00:00
nur.overlay
];
};
latest = { };
};
nixos = {
hostDefaults = {
system = "x86_64-linux";
channelName = "nixos";
modules = ./modules/module-list.nix;
externalModules = [
ci-agent.nixosModules.agent-profile
home.nixosModules.home-manager
./modules/customBuilds.nix
2021-04-22 03:44:15 +00:00
];
};
hosts = nixos.lib.mkMerge [
(devos.lib.importHosts ./hosts)
{ /* set host specific properties here */ }
];
2021-04-22 03:44:15 +00:00
profiles = [ ./profiles ./users ];
suites = { profiles, users, ... }: with profiles; {
base = [ cachix core users.nixos users.root ];
2021-04-22 03:44:15 +00:00
};
};
home = {
modules = ./users/modules/module-list.nix;
externalModules = [ ];
profiles = [ ./users/profiles ];
suites = { profiles, ... }: with profiles; {
base = [ direnv git ];
};
};
#defaultTemplate = self.templates.flk;
templates.flk.path = ./.;
templates.flk.description = "flk template";
}
;
2019-12-03 05:18:30 +00:00
}