nixos-config/flake.nix

141 lines
4 KiB
Nix
Raw Normal View History

2023-03-29 13:14:37 +00:00
{
inputs = {
# Pin nixpkgs to a specific commit
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2023-05-27 01:39:16 +00:00
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.05";
2023-03-29 13:14:37 +00:00
2023-04-16 02:30:45 +00:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-09-26 18:32:27 +00:00
nix-vscode-extensions = {
url = "github:nix-community/nix-vscode-extensions";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-04-16 05:18:23 +00:00
2023-04-03 09:41:33 +00:00
nixos-cn = {
url = "github:nixos-cn/flakes";
2023-04-16 02:30:45 +00:00
inputs.nixpkgs.follows = "nixpkgs";
2023-04-03 09:41:33 +00:00
};
2023-09-26 18:32:27 +00:00
nur.url = "github:nix-community/NUR";
2023-04-16 02:30:45 +00:00
2023-09-26 18:32:27 +00:00
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
2023-09-26 18:32:27 +00:00
sops-nix.url = "github:Mic92/sops-nix";
flake-utils.url = "github:numtide/flake-utils";
2023-04-03 09:41:33 +00:00
};
2023-04-16 05:18:23 +00:00
outputs = { self, ... }@inputs:
with inputs;
2023-04-16 02:30:45 +00:00
let
mkHome = user: host: { config, system, ... }: {
imports = [
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.xin = import ./home/${user}/${host};
home-manager.extraSpecialArgs = { inherit inputs system; };
}
];
};
mkNixos = { system, modules, specialArgs ? {}}: nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = specialArgs // { inherit inputs system; };
modules = [
home-manager.nixosModules.home-manager
nur.nixosModules.nur
] ++ modules;
2023-04-16 02:30:45 +00:00
};
2023-10-06 14:03:47 +00:00
evalSecrets = import ./eval_secrets.nix;
2023-04-16 02:30:45 +00:00
in
{
nixosModules = import ./modules/nixos;
homeManagerModules = import ./modules/home-manager;
2023-10-06 14:03:47 +00:00
colmena = {
meta = {
nixpkgs = import nixpkgs {
system = "x86_64-linux";
};
machinesFile = ./nixbuild.net;
2023-11-28 13:38:50 +00:00
specialArgs = {
inherit inputs;
};
2023-10-06 14:03:47 +00:00
};
massicot = { name, nodes, pkgs, ... }: with inputs; {
imports = [
{ nixpkgs.system = "aarch64-linux"; }
machines/massicot
];
};
2023-11-28 13:38:50 +00:00
dolomite = { name, nodes, pkgs, ... }: with inputs; {
imports = [
{ nixpkgs.system = "x86_64-linux"; }
machines/dolomite
];
deployment = {
targetHost = "video.namely.icu";
buildOnTarget = false;
};
};
2023-10-06 14:03:47 +00:00
};
nixosConfigurations.calcite = mkNixos {
2023-04-16 02:30:45 +00:00
system = "x86_64-linux";
modules = [
nixos-hardware.nixosModules.asus-zephyrus-ga401
machines/calcite/configuration.nix
(mkHome "xin" "calcite")
2023-04-16 02:30:45 +00:00
];
};
2023-07-29 15:34:24 +00:00
nixosConfigurations.massicot = mkNixos {
system = "aarch64-linux";
modules = [
machines/massicot
(mkHome "xin" "gold")
2023-10-06 14:03:47 +00:00
];
};
2023-07-29 15:34:24 +00:00
2023-04-23 03:06:57 +00:00
nixosConfigurations.raspite = mkNixos {
2023-04-16 05:18:23 +00:00
system = "aarch64-linux";
modules = [
nixos-hardware.nixosModules.raspberry-pi-4
2023-04-23 03:06:57 +00:00
machines/raspite/configuration.nix
(mkHome "xin" "raspite")
2023-04-16 05:18:23 +00:00
];
};
2023-04-23 03:06:57 +00:00
images.raspite = (mkNixos {
2023-04-16 05:18:23 +00:00
system = "aarch64-linux";
modules = [
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
nixos-hardware.nixosModules.raspberry-pi-4
2023-04-23 03:06:57 +00:00
machines/raspite/configuration.nix
2023-04-16 05:18:23 +00:00
{
nixpkgs.config.allowUnsupportedSystem = true;
nixpkgs.hostPlatform.system = "aarch64-linux";
nixpkgs.buildPlatform.system = "x86_64-linux";
}
];
}).config.system.build.sdImage;
} //
(with flake-utils.lib; (eachSystem defaultSystems (system:
let pkgs = import nixpkgs { inherit system; }; in
{
packages = {
homeConfigurations."xin" = import ./home/xin/gold { inherit home-manager pkgs; };
};
2023-11-28 13:38:50 +00:00
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ git colmena nix-output-monitor ssh-to-age ];
};
}
)));
2023-03-29 13:14:37 +00:00
}