2019-12-03 05:18:30 +00:00
|
|
|
{
|
2019-12-05 08:36:15 +00:00
|
|
|
description = "A highly structured configuration database.";
|
2019-12-05 05:36:36 +00:00
|
|
|
|
2020-08-02 04:08:41 +00:00
|
|
|
inputs =
|
|
|
|
{
|
2021-03-16 21:43:55 +00:00
|
|
|
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";
|
2021-04-22 03:44:15 +00:00
|
|
|
inputs = { nix-darwin.follows = "darwin"; flake-compat.follows = "flake-compat"; 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-02 03:30:47 +00:00
|
|
|
flake-compat.url = "github:BBBSnowball/flake-compat/pr-1";
|
|
|
|
flake-compat.flake = false;
|
2021-03-23 14:28:25 +00:00
|
|
|
home.url = "github:nix-community/home-manager";
|
2021-02-07 21:24:41 +00:00
|
|
|
home.inputs.nixpkgs.follows = "nixos";
|
2021-02-15 05:17:24 +00:00
|
|
|
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
|
|
|
|
2021-03-15 03:27:58 +00:00
|
|
|
pkgs.url = "path:./pkgs";
|
|
|
|
pkgs.inputs.nixpkgs.follows = "nixos";
|
2020-08-02 04:08:41 +00:00
|
|
|
};
|
2019-12-14 04:39:25 +00:00
|
|
|
|
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 = nixos.lib.flatten [
|
|
|
|
(devos.lib.pathsIn ./overlays)
|
2021-04-26 20:21:40 +00:00
|
|
|
./pkgs/default.nix
|
|
|
|
pkgs.overlay # for `srcs`
|
2021-04-22 03:44:15 +00:00
|
|
|
./overrides.nix # from "latest" channel
|
|
|
|
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
|
|
|
|
];
|
|
|
|
};
|
|
|
|
hosts = {
|
|
|
|
NixOS = {
|
|
|
|
modules = ./hosts/NixOS.nix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
profiles = [ ./profiles ./users ];
|
|
|
|
suites = { profiles, users, ... }: with profiles; {
|
2021-04-27 02:34:18 +00:00
|
|
|
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
|
|
|
}
|