167 lines
5.5 KiB
Nix
167 lines
5.5 KiB
Nix
{
|
|
inputs = {
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
|
|
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
hardware.url = "github:NixOS/nixos-hardware/master";
|
|
|
|
agenix = {
|
|
url = "github:ryantm/agenix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.darwin.follows = "";
|
|
};
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
wired = {
|
|
url = "github:Toqozz/wired-notify";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
# nix lsp
|
|
nil = {
|
|
url = "github:oxalica/nil";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
};
|
|
|
|
# my neovim configuration
|
|
myneovim = {
|
|
url = "git+https://git.pleshevski.ru/mynix/neovim";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
};
|
|
|
|
# tool to change .env faster
|
|
vnetod = {
|
|
url = "git+https://git.pleshevski.ru/pleshevskiy/vnetod";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
};
|
|
|
|
yagpt_tg_bot = {
|
|
url = "git+https://git.pleshevski.ru/pleshevskiy/yandexgpt_tg_bot";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
};
|
|
|
|
mailserver = {
|
|
url = "gitlab:simple-nixos-mailserver/nixos-mailserver";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.utils.follows = "flake-utils";
|
|
};
|
|
};
|
|
|
|
outputs = inputs @ { self, flake-utils, nixpkgs, ... }:
|
|
flake-utils.lib.eachDefaultSystem
|
|
(system:
|
|
let
|
|
pkgs = import nixpkgs { inherit system; };
|
|
inherit (pkgs) lib;
|
|
|
|
nixos-rebuild = pkgs.nixos-rebuild.override { nix = pkgs.nixVersions.stable; };
|
|
|
|
localMachines = lib.filterAttrs (h: m: m.config.deployment.targetHost == null) self.nixosConfigurations;
|
|
vpsMachines = lib.filterAttrs (h: m: m.config.deployment.targetHost != null) self.nixosConfigurations;
|
|
in
|
|
{
|
|
apps = lib.mapAttrs
|
|
(name: program: { type = "app"; program = toString program; })
|
|
(flake-utils.lib.flattenTree {
|
|
deploy = lib.recurseIntoAttrs (lib.mapAttrs
|
|
(hostname: machine: pkgs.writeShellScript "deploy-${hostname}" ''
|
|
${nixos-rebuild}/bin/nixos-rebuild switch \
|
|
--flake .#${hostname} \
|
|
--target-host ${machine.config.deployment.targetHost} \
|
|
$@
|
|
'')
|
|
vpsMachines);
|
|
|
|
rollback = lib.recurseIntoAttrs (lib.mapAttrs
|
|
(hostname: machine: pkgs.writeShellScript "rollback-${hostname}" ''
|
|
${nixos-rebuild}/bin/nixos-rebuild switch --rollback
|
|
'')
|
|
self.nixosConfigurations);
|
|
|
|
switch = lib.recurseIntoAttrs (lib.mapAttrs
|
|
(hostname: machine: pkgs.writeShellScript "switch-${hostname}" ''
|
|
${nixos-rebuild}/bin/nixos-rebuild switch --flake .#${hostname} $@
|
|
'')
|
|
localMachines);
|
|
|
|
test = lib.recurseIntoAttrs (lib.mapAttrs
|
|
(hostname: machine: pkgs.writeShellScript "test-${hostname}" ''
|
|
${nixos-rebuild}/bin/nixos-rebuild test --flake .#${hostname} $@
|
|
'')
|
|
localMachines);
|
|
|
|
});
|
|
|
|
devShells = {
|
|
default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
stylua # lua formatter
|
|
ormolu # haskell formatter
|
|
inputs.agenix.packages.${system}.agenix
|
|
];
|
|
|
|
# Path to the agenix configuration file
|
|
RULES = "./.agenix_config.nix";
|
|
};
|
|
tools = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
mkpasswd
|
|
gucharmap
|
|
wireguard-tools
|
|
];
|
|
};
|
|
};
|
|
})
|
|
// {
|
|
overlays.default = final: prev: import ./packages { inherit (prev) lib callPackage; };
|
|
|
|
nixosConfigurations =
|
|
nixpkgs.lib.mapAttrs
|
|
(hostname: { system
|
|
, specialArgs ? { }
|
|
, extraModules ? [ ]
|
|
, extraHomeModule ? null
|
|
, targetHost ? null
|
|
, nixpkgs ? inputs.nixpkgs
|
|
}:
|
|
nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
|
|
specialArgs = { inherit inputs extraHomeModule; } // specialArgs;
|
|
|
|
modules =
|
|
(with inputs; [
|
|
agenix.nixosModules.default
|
|
home-manager.nixosModule
|
|
])
|
|
++ extraModules
|
|
++ [
|
|
# deployment settings
|
|
({ lib, ... }: {
|
|
options.deployment = with lib; {
|
|
targetHost = mkOption {
|
|
type = types.nullOr types.str;
|
|
readOnly = true;
|
|
internal = true;
|
|
};
|
|
};
|
|
config.deployment = { inherit targetHost; };
|
|
})
|
|
# base home manager settings
|
|
({ ... }: {
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
})
|
|
]
|
|
++ [ ./nixos/hosts/${hostname} ];
|
|
})
|
|
(import ./nixos/hosts inputs);
|
|
};
|
|
}
|