nixos-config/flake.nix

75 lines
2.2 KiB
Nix
Raw Normal View History

2023-01-20 20:21:16 +01:00
{
description = "Felixalb System flake";
inputs = {
2023-06-07 21:10:31 +02:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05-small";
2023-01-20 20:21:16 +01:00
unstable.url = "github:NixOS/nixpkgs/nixos-unstable-small";
2023-07-26 09:06:51 +02:00
nix-darwin.url = "github:lnl7/nix-darwin/master";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
2023-01-20 20:21:16 +01:00
2023-04-15 20:44:47 +02:00
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
2023-01-20 20:21:16 +01:00
};
2023-07-26 09:06:51 +02:00
outputs = { self, nixpkgs, unstable, nix-darwin, sops-nix, ... }@inputs:
2023-01-20 20:21:16 +01:00
let
2023-05-11 14:34:13 +02:00
overlay-unstable = final: prev: {
unstable = unstable.legacyPackages.${prev.system};
};
2023-01-20 20:21:16 +01:00
in
{
nixosConfigurations = {
2023-04-15 20:44:47 +02:00
voyager = nixpkgs.lib.nixosSystem {
2023-07-26 09:06:51 +02:00
system = "x86_64-linux";
2023-04-15 20:44:47 +02:00
specialArgs = {
inherit inputs;
};
modules = [
2023-05-11 14:34:13 +02:00
# Overlays-module makes "pkgs.unstable" available in configuration.nix
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
2023-04-15 20:44:47 +02:00
./hosts/voyager/configuration.nix
sops-nix.nixosModules.sops
];
};
2023-01-20 20:21:16 +01:00
chapel = nixpkgs.lib.nixosSystem {
2023-07-26 09:06:51 +02:00
system = "x86_64-linux";
2023-01-20 20:21:16 +01:00
specialArgs = {
inherit inputs;
};
modules = [
./hosts/chapel/configuration.nix
2023-04-15 20:44:47 +02:00
sops-nix.nixosModules.sops
2023-01-20 20:21:16 +01:00
];
};
2023-03-01 12:29:05 +01:00
redshirt = nixpkgs.lib.nixosSystem {
2023-07-26 09:06:51 +02:00
system = "x86_64-linux";
2023-03-01 12:29:05 +01:00
specialArgs = {
inherit inputs;
};
modules = [
2023-05-26 13:48:43 +02:00
./hosts/redshirt/configuration.nix
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
sops-nix.nixosModules.sops
2023-03-01 12:29:05 +01:00
];
};
2023-01-20 20:21:16 +01:00
};
2023-04-23 14:27:27 +02:00
2023-07-26 09:06:51 +02:00
darwinConfigurations.worf = nix-darwin.lib.darwinSystem {
system = "aarch64-darwin";
specialArgs = {
inherit inputs;
};
modules = [
./hosts/worf/configuration.nix
# ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
# sops-nix.nixosModules.sops
];
};
2023-04-23 14:27:27 +02:00
devShells.x86_64-linux = {
default = nixpkgs.legacyPackages.x86_64-linux.callPackage ./shell.nix { };
};
2023-01-20 20:21:16 +01:00
};
}