53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
description = "Nixos config flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
|
|
|
disko = {
|
|
url = "github:nix-community/disko";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
impermanence.url = "github:nix-community/impermanence";
|
|
|
|
sops-nix = {
|
|
url = "github:Mic92/sops-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
arion.url = "github:hercules-ci/arion";
|
|
|
|
authentik-nix.url = "github:nix-community/authentik-nix";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-24.05";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
firefox-addons = {
|
|
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
system.url = "./system-config";
|
|
|
|
nixvim.url = "/ssd1/Projects/Nixvim";
|
|
|
|
nathan.url = "./home-manager";
|
|
|
|
};
|
|
|
|
outputs = {nixpkgs, ...} @ inputs:
|
|
{
|
|
nixosConfigurations.homebox = nixpkgs.lib.nixosSystem {
|
|
specialArgs = {inherit inputs;};
|
|
modules = [
|
|
|
|
./system-config/configuration/homebox
|
|
|
|
];
|
|
};
|
|
};
|
|
}
|