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 10:48:52 +02:00
|
|
|
|
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-07-26 10:48:52 +02:00
|
|
|
home-manager.url = "github:nix-community/home-manager/release-23.05";
|
|
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
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 10:48:52 +02:00
|
|
|
outputs = { self, nixpkgs, unstable, home-manager, 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
|
2023-07-26 10:48:52 +02:00
|
|
|
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
|
|
|
|
home-manager.darwinModules.home-manager {
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
|
|
home-manager.useUserPackages = true;
|
|
|
|
# home-manager.extraSpecialArgs = { inherit user; };
|
|
|
|
home-manager.users."felixalb" = import ./hosts/worf/home.nix;
|
|
|
|
}
|
2023-07-26 09:06:51 +02:00
|
|
|
# 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-07-26 15:22:24 +02:00
|
|
|
|
|
|
|
devShells.aarch64-darwin = {
|
|
|
|
default = nixpkgs.legacyPackages.aarch64-darwin.callPackage ./shell.nix { };
|
|
|
|
};
|
2023-01-20 20:21:16 +01:00
|
|
|
};
|
|
|
|
}
|