2021-10-05 23:45:02 +02:00
|
|
|
{
|
|
|
|
description = "System config";
|
|
|
|
|
|
|
|
inputs = {
|
2021-11-12 17:10:17 +01:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2021-10-05 23:45:02 +02:00
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2021-11-12 07:23:46 +01:00
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
2021-10-05 23:45:02 +02:00
|
|
|
|
2022-07-02 19:09:47 +02:00
|
|
|
nixos-hardware.url = github:NixOS/nixos-hardware;
|
|
|
|
|
2022-01-24 11:17:44 +01:00
|
|
|
nixos-generators = {
|
|
|
|
url = "github:nix-community/nixos-generators";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
naersk = {
|
|
|
|
url = "github:nix-community/naersk";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
rust-overlay = {
|
|
|
|
url = "github:oxalica/rust-overlay";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
};
|
|
|
|
|
2021-11-26 22:21:16 +01:00
|
|
|
sops = {
|
|
|
|
url = "github:Mic92/sops-nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2022-02-09 08:13:16 +01:00
|
|
|
emacs-overlay = {
|
|
|
|
url = "github:nix-community/emacs-overlay";
|
2022-05-11 16:27:19 +02:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
2022-02-09 08:13:16 +01:00
|
|
|
};
|
|
|
|
|
2021-11-21 19:07:12 +01:00
|
|
|
ha-now-playing = {
|
2022-03-18 21:14:51 +01:00
|
|
|
url = "git+https://git.datarift.nl/erwin/ha-now-playing.git?ref=main";
|
2021-11-21 19:07:12 +01:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.utils.follows = "flake-utils";
|
2022-01-24 11:17:44 +01:00
|
|
|
inputs.naersk.follows = "naersk";
|
|
|
|
inputs.rust-overlay.follows = "rust-overlay";
|
2021-11-21 19:07:12 +01:00
|
|
|
};
|
2021-10-05 23:45:02 +02:00
|
|
|
|
2021-11-21 19:07:12 +01:00
|
|
|
pamedia = {
|
2022-03-18 21:14:51 +01:00
|
|
|
url = "git+https://git.datarift.nl/erwin/pamedia-rs.git?ref=main";
|
2021-11-21 19:07:12 +01:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.utils.follows = "flake-utils";
|
2022-01-24 11:17:44 +01:00
|
|
|
inputs.naersk.follows = "naersk";
|
2021-11-21 19:07:12 +01:00
|
|
|
};
|
2022-09-27 20:38:45 +02:00
|
|
|
|
|
|
|
sunshine = {
|
|
|
|
url = "git+ssh://git@git.datarift.nl/erwin/sunshine.git?ref=main";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
};
|
2021-11-12 07:23:46 +01:00
|
|
|
};
|
2021-10-05 23:45:02 +02:00
|
|
|
|
2022-04-27 00:21:19 +02:00
|
|
|
outputs =
|
|
|
|
{ self
|
2022-07-02 19:09:47 +02:00
|
|
|
, nixos-hardware
|
2022-04-27 00:21:19 +02:00
|
|
|
, sops
|
|
|
|
, ha-now-playing
|
|
|
|
, pamedia
|
|
|
|
, ...
|
|
|
|
} @ inputs:
|
|
|
|
with inputs; let
|
|
|
|
defSystem = system: baseConfig:
|
|
|
|
nixpkgs.lib.nixosSystem {
|
|
|
|
system = "${system}";
|
|
|
|
modules = [
|
|
|
|
{ _module.args.inputs = inputs; }
|
2022-05-19 21:39:19 +02:00
|
|
|
{ _module.args.self-overlay = self.overlays.default; }
|
2022-04-27 00:21:19 +02:00
|
|
|
({ ... }: {
|
|
|
|
imports =
|
|
|
|
builtins.attrValues self.nixosModules
|
|
|
|
++ [
|
|
|
|
{
|
|
|
|
nix.nixPath = [ "nixpkgs=${nixpkgs}" ];
|
|
|
|
nixpkgs.overlays = [
|
2022-05-19 21:39:19 +02:00
|
|
|
self.overlays.default
|
2022-04-27 00:21:19 +02:00
|
|
|
ha-now-playing.overlays.${system}
|
|
|
|
pamedia.overlays.${system}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
baseConfig
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
{ home-manager.useUserPackages = true; }
|
|
|
|
];
|
|
|
|
|
|
|
|
system.configurationRevision = nixpkgs.lib.mkIf (self ? rev) self.rev;
|
|
|
|
nix.registry.nixpkgs.flake = nixpkgs;
|
|
|
|
})
|
|
|
|
sops.nixosModules.sops
|
2022-09-27 20:38:45 +02:00
|
|
|
inputs.sunshine.nixosModules.sunshine
|
2022-04-27 00:21:19 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
in
|
2022-03-01 22:19:03 +01:00
|
|
|
{
|
2022-05-19 21:39:19 +02:00
|
|
|
overlays.default = import ./overlays;
|
2022-03-01 22:19:03 +01:00
|
|
|
# overlay = final: prev: {
|
|
|
|
# unstable = import nixpkgs {
|
|
|
|
# system = "x86_64-linux";
|
|
|
|
# config.allowUnfree = true;
|
|
|
|
# };
|
|
|
|
# };
|
|
|
|
|
|
|
|
nixosModules = builtins.listToAttrs (map
|
2022-03-18 21:14:51 +01:00
|
|
|
(x: {
|
|
|
|
name = x;
|
|
|
|
value = import (./modules + "/${x}");
|
|
|
|
})
|
|
|
|
(builtins.attrNames (builtins.readDir ./modules)));
|
2021-10-05 23:45:02 +02:00
|
|
|
|
2022-03-01 22:19:03 +01:00
|
|
|
nixosConfigurations = {
|
|
|
|
vm1 = defSystem "x86_64-linux" {
|
|
|
|
imports = [
|
2022-04-27 00:21:19 +02:00
|
|
|
(import ./machines/vm1/configuration.nix { inherit self; })
|
2022-03-01 22:19:03 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
vm2 = defSystem "x86_64-linux" {
|
|
|
|
imports = [
|
2022-04-27 00:21:19 +02:00
|
|
|
(import ./machines/vm2/configuration.nix { inherit self; })
|
2022-03-01 22:19:03 +01:00
|
|
|
];
|
|
|
|
};
|
2021-11-12 07:23:46 +01:00
|
|
|
|
2022-03-01 22:19:03 +01:00
|
|
|
loki = defSystem "x86_64-linux" {
|
|
|
|
imports = [
|
2022-05-04 10:46:29 +02:00
|
|
|
(import ./machines/loki/configuration.nix { inherit self nixpkgs; })
|
2022-07-02 19:09:47 +02:00
|
|
|
nixos-hardware.nixosModules.common-cpu-amd
|
|
|
|
nixos-hardware.nixosModules.common-gpu-amd
|
|
|
|
nixos-hardware.nixosModules.common-pc-ssd
|
2022-03-01 22:19:03 +01:00
|
|
|
];
|
|
|
|
};
|
2021-12-10 10:53:40 +01:00
|
|
|
|
2022-03-01 22:19:03 +01:00
|
|
|
drone = defSystem "x86_64-linux" {
|
|
|
|
imports = [
|
2022-04-27 00:21:19 +02:00
|
|
|
(import ./machines/drone/configuration.nix { inherit self; })
|
2022-03-01 22:19:03 +01:00
|
|
|
];
|
|
|
|
};
|
2022-01-25 08:33:18 +01:00
|
|
|
|
2022-03-01 22:19:03 +01:00
|
|
|
proxy = defSystem "x86_64-linux" {
|
|
|
|
imports = [
|
2022-04-27 00:21:19 +02:00
|
|
|
(import ./machines/proxy/configuration.nix { inherit self; })
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
gitea = defSystem "x86_64-linux" {
|
|
|
|
imports = [
|
|
|
|
(import ./machines/gitea/configuration.nix { inherit self; })
|
2022-03-01 22:19:03 +01:00
|
|
|
];
|
|
|
|
};
|
2022-01-24 11:17:44 +01:00
|
|
|
|
2022-09-07 22:59:08 +02:00
|
|
|
vpn = defSystem "x86_64-linux" {
|
2022-03-01 22:19:03 +01:00
|
|
|
imports = [
|
2022-09-07 22:59:08 +02:00
|
|
|
(import ./machines/vpn/configuration.nix { inherit self; })
|
2022-04-26 10:59:48 +02:00
|
|
|
];
|
|
|
|
};
|
2022-01-24 11:17:44 +01:00
|
|
|
};
|
2022-09-07 22:59:08 +02:00
|
|
|
|
2022-03-01 22:19:03 +01:00
|
|
|
}
|
2022-04-27 00:21:19 +02:00
|
|
|
// (flake-utils.lib.eachSystem [ "aarch64-linux" "x86_64-linux" ])
|
|
|
|
(
|
|
|
|
system:
|
|
|
|
let
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
inherit system;
|
|
|
|
overlays = [
|
2022-05-19 21:39:19 +02:00
|
|
|
self.overlays.default
|
2022-04-27 00:21:19 +02:00
|
|
|
ha-now-playing.overlays.${system}
|
|
|
|
pamedia.overlays.${system}
|
|
|
|
];
|
|
|
|
config = {
|
|
|
|
allowUnsupportedSystem = true;
|
|
|
|
allowUnfree = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
rec {
|
|
|
|
packages = flake-utils.lib.flattenTree {
|
|
|
|
rofi-wayland = pkgs.rofi-wayland;
|
|
|
|
nix-plugins = pkgs.nix-plugins;
|
|
|
|
backscrub = pkgs.backscrub;
|
2022-06-08 17:23:31 +02:00
|
|
|
bl3auto = pkgs.bl3auto;
|
2021-11-12 07:23:46 +01:00
|
|
|
};
|
2021-11-26 22:21:16 +01:00
|
|
|
|
2022-04-27 00:21:19 +02:00
|
|
|
apps = {
|
|
|
|
rofi-wayland = flake-utils.lib.mkApp { drv = packages.rofi-wayland; };
|
|
|
|
nix-plugins = flake-utils.lib.mkApp { drv = packages.nix-plugins; };
|
|
|
|
backscrub = flake-utils.lib.mkApp { drv = packages.backscrub; };
|
2022-03-01 22:19:03 +01:00
|
|
|
};
|
2022-04-27 00:21:19 +02:00
|
|
|
|
2022-05-30 14:52:02 +02:00
|
|
|
devShells.default = with pkgs;
|
2022-04-27 00:21:19 +02:00
|
|
|
mkShell {
|
2022-05-30 14:52:02 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgs.sops
|
|
|
|
ssh-to-pgp
|
2022-09-07 22:59:08 +02:00
|
|
|
ssh-to-age
|
2022-09-21 18:35:36 +02:00
|
|
|
age
|
2022-06-27 10:09:28 +02:00
|
|
|
nodejs-18_x
|
|
|
|
nodePackages.typescript-language-server
|
2022-09-07 22:59:08 +02:00
|
|
|
nodePackages.yaml-language-server
|
|
|
|
inputs.nixos-generators.packages.${system}.nixos-generators
|
2022-05-30 14:52:02 +02:00
|
|
|
];
|
2022-04-27 00:21:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
formatter = pkgs.nixpkgs-fmt;
|
|
|
|
}
|
|
|
|
);
|
2021-10-05 23:45:02 +02:00
|
|
|
}
|