ark/flake.nix

139 lines
3.8 KiB
Nix
Raw Normal View History

2019-12-03 08:18:30 +03:00
{
2019-12-05 11:36:15 +03:00
description = "A highly structured configuration database.";
inputs =
{
nixos.url = "nixpkgs/nixos-unstable";
2021-05-28 19:37:09 +03:00
nixpkgs.follows = "nixos";
2021-04-22 06:44:15 +03:00
latest.url = "nixpkgs";
digga.url = "github:divnix/digga/master";
2021-04-02 05:10:24 +03:00
2021-03-02 06:30:47 +03: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 06:30:47 +03:00
};
darwin.url = "github:LnL7/nix-darwin";
2021-04-22 06:44:15 +03:00
darwin.inputs.nixpkgs.follows = "latest";
2021-03-23 17:28:25 +03:00
home.url = "github:nix-community/home-manager";
home.inputs.nixpkgs.follows = "nixos";
naersk.url = "github:nmattia/naersk";
2021-04-22 06:44:15 +03:00
naersk.inputs.nixpkgs.follows = "latest";
agenix.url = "github:ryantm/agenix";
agenix.inputs.nixpkgs.follows = "latest";
2021-03-02 06:30:47 +03:00
nixos-hardware.url = "github:nixos/nixos-hardware";
2021-04-02 05:10:24 +03:00
pkgs.url = "path:./pkgs";
pkgs.inputs.nixpkgs.follows = "nixos";
2021-05-03 07:48:31 +03:00
nixosPersistence.url = "github:nix-community/impermanence";
2021-05-08 07:44:58 +03:00
nixEvalLsp = {
url = "github:aaronjanse/nix-eval-lsp";
inputs.nixpkgs.follows = "nixos";
};
2021-05-14 02:58:36 +03:00
nixpkgsWayland = {
url = "github:colemickens/nixpkgs-wayland";
inputs.nixpkgs.follows = "nixos";
};
};
outputs =
{ self
, pkgs
, digga
, nixos
, ci-agent
, home
, nixos-hardware
, nur
, agenix
, nixosPersistence, nixpkgsWayland, nixEvalLsp
, ...
} @ inputs:
2021-05-14 20:17:53 +03:00
digga.lib.mkFlake {
2021-04-22 06:44:15 +03:00
inherit self inputs;
2021-06-16 18:19:07 +03:00
lib = import ./lib { lib = digga.lib // nixos.lib; };
2021-05-24 23:42:43 +03:00
channelsConfig = {
allowUnfree = true;
};
2021-04-22 06:44:15 +03:00
channels = {
nixos = {
imports = [ (digga.lib.importers.overlays ./overlays) ];
overlays = [
./pkgs/default.nix
pkgs.overlay # for `srcs`
nur.overlay
2021-05-14 02:58:36 +03:00
nixpkgsWayland.overlay
2021-05-17 16:29:13 +03:00
(final: prev: {
inherit (nixEvalLsp.packages.${prev.system}) nix-eval-lsp;
})
agenix.overlay
];
2021-04-22 06:44:15 +03:00
};
latest = { };
};
sharedOverlays = [
(final: prev: {
lib = prev.lib.extend (lfinal: lprev: {
our = self.lib;
});
})
];
2021-04-22 06:44:15 +03:00
nixos = {
hostDefaults = {
system = "x86_64-linux";
channelName = "nixos";
modules = ./modules/module-list.nix;
externalModules = [
{ _module.args.ourLib = self.lib; }
2021-04-22 06:44:15 +03:00
ci-agent.nixosModules.agent-profile
home.nixosModules.home-manager
2021-05-10 14:19:05 +03:00
nixosPersistence.nixosModules.impermanence
agenix.nixosModules.age
./modules/customBuilds.nix
2021-04-22 06:44:15 +03:00
];
};
imports = [ (digga.lib.importers.hosts ./hosts) ];
hosts = {
/* set host specific properties here */
NixOS = { };
};
2021-06-16 18:19:07 +03:00
importables = rec {
profiles = (digga.lib.importers.rakeLeaves ./profiles) // { users = digga.lib.importers.rakeLeaves ./users; };
suites = with profiles; {
base = [ cachix core users.root ];
work = [ users.patriot develop ];
};
2021-04-22 06:44:15 +03:00
};
};
home = {
modules = ./users/modules/module-list.nix;
externalModules = [ ];
2021-06-16 18:19:07 +03:00
importables = rec {
profiles = digga.lib.importers.rakeLeaves ./users/profiles;
suites = with profiles; {
base = [ direnv git starship ];
};
2021-04-22 06:44:15 +03:00
};
};
2021-05-29 22:53:33 +03:00
devshell.externalModules = { pkgs, ... }: {
packages = [ pkgs.agenix ];
};
2021-05-14 20:17:53 +03:00
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
2021-05-14 20:17:53 +03:00
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations { };
defaultTemplate = self.templates.flk;
2021-04-22 06:44:15 +03:00
templates.flk.path = ./.;
templates.flk.description = "flk template";
}
;
2019-12-03 08:18:30 +03:00
}