xin/flake.nix

235 lines
6.9 KiB
Nix
Raw Normal View History

2022-08-25 12:21:35 -06:00
{
description = "bold.daemon";
inputs = {
xin-secrets = {
2022-08-25 21:23:58 -06:00
url = "git+ssh://xin-secrets-ro/qbit/xin-secrets.git?ref=main";
2022-08-25 12:21:35 -06:00
};
2022-10-29 11:00:07 -06:00
unstable.url = "github:NixOS/nixpkgs";
2022-08-27 07:45:25 -06:00
unstableSmall.url = "github:NixOS/nixpkgs/nixos-unstable-small";
2022-08-25 12:21:35 -06:00
stable.url = "github:NixOS/nixpkgs/nixos-22.05-small";
2022-09-01 11:49:36 -06:00
nixos-hardware = { url = "github:NixOS/nixos-hardware/master"; };
2022-08-25 12:21:35 -06:00
emacs-overlay = {
url =
2022-11-04 06:02:18 -06:00
"github:nix-community/emacs-overlay/307dfb67a8080125c50d0c99f6bf6178a23395f7";
2022-08-25 12:21:35 -06:00
inputs.nixpkgs.follows = "stable";
};
darwin = {
url = "github:lnl7/nix-darwin";
2022-09-09 10:37:15 -06:00
inputs.nixpkgs.follows = "unstableSmall";
2022-08-25 12:21:35 -06:00
};
sshKnownHosts = {
url = "github:qbit/ssh_known_hosts";
flake = false;
};
2022-09-04 07:45:09 -06:00
microca = { url = "github:qbit/microca"; };
taskobs = { url = "github:qbit/taskobs"; };
2022-08-25 12:21:35 -06:00
mcchunkie = {
url = "github:qbit/mcchunkie";
flake = false;
};
gqrss = {
url = "github:qbit/gqrss";
flake = false;
};
2022-08-30 15:56:37 -06:00
peerix = {
url = "github:cid-chan/peerix";
inputs.nixpkgs.follows = "stable";
};
2022-08-25 12:21:35 -06:00
};
outputs = { self, unstable, unstableSmall, stable, nixos-hardware
, sshKnownHosts, microca, taskobs, mcchunkie, gqrss, darwin, xin-secrets
, peerix, ... }@flakes:
2022-08-25 12:21:35 -06:00
let
2022-10-12 07:13:52 -06:00
supportedSystems =
[ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
forAllSystems = unstable.lib.genAttrs supportedSystems;
nixpkgsFor = forAllSystems (system: import unstable { inherit system; });
2022-08-25 12:21:35 -06:00
hostBase = {
modules = [
# Common config stuffs
(import (./default.nix))
(import "${sshKnownHosts}")
xin-secrets.nixosModules.sops
xin-secrets.nixosModules.xin-secrets
2022-08-31 08:00:21 -06:00
peerix.nixosModules.peerix
2022-08-25 12:21:35 -06:00
];
};
2022-09-04 08:04:56 -06:00
overlays = [
flakes.emacs-overlay.overlay
flakes.peerix.overlay
flakes.microca.overlay
flakes.taskobs.overlay
2022-09-04 08:04:56 -06:00
];
2022-08-25 12:21:35 -06:00
# Set our configurationRevison based on the status of our git repo.
# If the repo is dirty, disable autoUpgrade as it means we are
# testing something.
buildVer = let state = self.rev or "DIRTY";
in {
system.configurationRevision = state;
system.autoUpgrade.enable = (state != "DIRTY");
};
2022-08-25 12:21:35 -06:00
buildShell = pkgs:
pkgs.mkShell {
shellHook = ''
PS1='\u@\h:\w; '
( . ./common.sh; start ) || true;
2022-08-25 12:21:35 -06:00
'';
nativeBuildInputs = with pkgs; [
deadnix
git
2022-08-25 12:21:35 -06:00
go
jq
nil
2022-08-25 12:21:35 -06:00
nix-diff
2022-10-10 06:49:27 -06:00
shfmt
sops
2022-08-25 12:21:35 -06:00
ssh-to-age
ssh-to-pgp
statix
tree
2022-08-25 12:21:35 -06:00
];
};
buildSys = sys: sysBase: extraMods: name:
sysBase.lib.nixosSystem {
system = sys;
modules = hostBase.modules ++ extraMods ++ [{
nix = {
registry.nixpkgs.flake = sysBase;
nixPath = [ "nixpkgs=${sysBase}" ];
};
}] ++ [ buildVer (./. + "/hosts/${name}") ]
++ [{ nixpkgs.overlays = overlays; }];
};
pkgs = unstable.legacyPackages.x86_64-linux;
2022-09-09 09:56:41 -06:00
darwinPkgs = unstableSmall.legacyPackages.aarch64-darwin;
2022-08-25 12:21:35 -06:00
in {
darwinConfigurations = {
plq = darwin.lib.darwinSystem {
system = "aarch64-darwin";
modules = [
xin-secrets.nixosModules.sops
(import "${sshKnownHosts}")
./overlays
./hosts/plq
];
};
};
2022-09-01 11:49:36 -06:00
formatter.x86_64-linux = stable.legacyPackages.x86_64-linux.nixfmt;
formatter.aarch64-darwin = stable.legacyPackages.aarch64-darwin.nixfmt;
2022-08-25 12:21:35 -06:00
devShells.x86_64-linux.default = buildShell pkgs;
devShells.aarch64-darwin.default = buildShell darwinPkgs;
nixosConfigurations = {
2022-10-22 10:21:45 -06:00
europa = buildSys "x86_64-linux" unstable
[ nixos-hardware.nixosModules.framework ] "europa";
2022-10-10 08:05:37 -06:00
stan = buildSys "x86_64-linux" unstable [ ] "stan";
2022-10-28 12:01:44 -06:00
weather = buildSys "aarch64-linux" stable
2022-10-10 08:05:37 -06:00
[ nixos-hardware.nixosModules.raspberry-pi-4 ] "weather";
faf = buildSys "x86_64-linux" stable [ ./configs/hardened.nix ] "faf";
box = buildSys "x86_64-linux" stable [ ./configs/hardened.nix ] "box";
2022-09-14 14:37:51 -06:00
luna = buildSys "x86_64-linux" stable
[ "${nixos-hardware}/common/cpu/intel" ] "luna";
2022-11-01 10:35:42 -06:00
h = buildSys "x86_64-linux" stable [ ./configs/hardened.nix ] "h";
2022-10-04 21:57:49 -06:00
router =
buildSys "x86_64-linux" stable [ ./configs/hardened.nix ] "router";
2022-08-25 12:21:35 -06:00
2022-10-28 12:01:44 -06:00
weatherInstall = stable.lib.nixosSystem {
2022-08-25 12:21:35 -06:00
system = "aarch64-linux";
modules = [
(import (./installer.nix))
xin-secrets.nixosModules.sops
(import "${sshKnownHosts}")
"${stable}/nixos/modules/installer/sd-card/sd-image-aarch64-installer.nix"
];
};
isoInstall = stable.lib.nixosSystem {
system = "x86_64-linux";
modules = [
buildVer
(import (./installer.nix))
xin-secrets.nixosModules.sops
(import "${sshKnownHosts}")
"${stable}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma5.nix"
2022-08-25 12:21:35 -06:00
];
};
};
2022-09-06 13:49:01 -06:00
2022-10-12 07:13:52 -06:00
packages = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
in {
ada_language_server =
pkgs.callPackage ./pkgs/ada_language_server.nix { inherit pkgs; };
2022-10-20 07:46:44 -06:00
alire = pkgs.callPackage ./pkgs/alire.nix { inherit pkgs; };
gqrss = pkgs.callPackage ./pkgs/gqrss.nix {
inherit pkgs;
isUnstable = true;
};
icbirc = pkgs.callPackage ./pkgs/icbirc.nix {
inherit pkgs;
isUnstable = true;
};
mcchunkie = pkgs.callPackage ./pkgs/mcchunkie.nix {
inherit pkgs;
isUnstable = true;
};
yarr = pkgs.callPackage ./pkgs/yarr.nix {
inherit pkgs;
isUnstable = true;
};
2022-10-17 11:12:01 -06:00
gosignify = pkgs.callPackage ./pkgs/gosignify.nix { inherit pkgs; };
2022-11-01 10:35:42 -06:00
govulncheck =
pkgs.callPackage ./pkgs/govulncheck.nix { inherit pkgs; };
zutty = pkgs.callPackage ./pkgs/zutty.nix {
inherit pkgs;
isUnstable = true;
};
2022-10-12 07:13:52 -06:00
});
2022-09-19 07:05:32 -06:00
templates."ada" = {
path = ./templates/ada;
description = "Ada template.";
};
2022-09-06 13:49:01 -06:00
templates."go" = {
path = ./templates/go;
description = "Go template.";
};
2022-09-23 16:33:22 -06:00
templates."perl" = {
path = ./templates/perl;
description = "Perl template.";
};
2022-09-27 17:33:33 -06:00
templates."mojo" = {
path = ./templates/mojo;
description = "Perl MojoLicious template.";
};
2022-10-05 21:46:32 -06:00
templates."ocaml" = {
path = ./templates/ocaml;
description = "OCaml template.";
};
2022-08-25 12:21:35 -06:00
};
}