2024-05-05 18:43:02 -04:00
|
|
|
{
|
2024-05-13 20:47:46 -04:00
|
|
|
description = "Lix/Auxolotl config flake";
|
2024-05-05 18:43:02 -04:00
|
|
|
|
|
|
|
|
inputs = {
|
2024-05-13 11:53:31 -04:00
|
|
|
# nixpkgs.url = "github:auxolotl/nixpkgs/nixos-unstable";
|
2024-05-05 18:43:02 -04:00
|
|
|
|
2024-05-13 11:42:34 -04:00
|
|
|
lix = {
|
|
|
|
|
url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
|
|
|
|
|
flake = false;
|
|
|
|
|
};
|
|
|
|
|
lix-module = {
|
|
|
|
|
url = "git+https://git.lix.systems/lix-project/nixos-module";
|
|
|
|
|
inputs.lix.follows = "lix";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
|
|
|
|
|
2024-05-05 18:43:02 -04:00
|
|
|
home-manager = {
|
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
2024-05-12 09:33:04 -04:00
|
|
|
|
|
|
|
|
sops-nix = {
|
|
|
|
|
url = "github:Mic92/sops-nix";
|
|
|
|
|
};
|
2024-05-13 20:47:46 -04:00
|
|
|
|
|
|
|
|
catppuccin-vsc = {
|
|
|
|
|
url = "https://flakehub.com/f/catppuccin/vscode/*.tar.gz";
|
|
|
|
|
};
|
2024-05-16 12:47:19 -04:00
|
|
|
|
|
|
|
|
solaar = {
|
|
|
|
|
url = "github:Svenum/Solaar-Flake/latest";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2024-05-16 12:49:59 -04:00
|
|
|
};
|
2024-05-05 18:43:02 -04:00
|
|
|
};
|
|
|
|
|
|
2024-05-16 12:49:59 -04:00
|
|
|
outputs = { self, nixpkgs, lix-module, solaar ... }@inputs:
|
2024-05-14 19:48:20 -04:00
|
|
|
let
|
|
|
|
|
system = "x86_64";
|
|
|
|
|
in {
|
2024-05-05 18:43:02 -04:00
|
|
|
nixosConfigurations = {
|
|
|
|
|
default = nixpkgs.lib.nixosSystem {
|
|
|
|
|
specialArgs = {inherit inputs;};
|
|
|
|
|
modules = [
|
|
|
|
|
./hosts/default/configuration.nix
|
|
|
|
|
inputs.home-manager.nixosModules.default
|
2024-05-12 09:34:40 -04:00
|
|
|
inputs.sops-nix.nixosModules.sops
|
2024-05-13 11:46:31 -04:00
|
|
|
lix-module.nixosModules.default
|
2024-05-05 18:43:02 -04:00
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
kim = nixpkgs.lib.nixosSystem {
|
|
|
|
|
specialArgs = {inherit inputs;};
|
|
|
|
|
modules = [
|
|
|
|
|
./hosts/kim/configuration.nix
|
2024-05-11 20:55:57 -04:00
|
|
|
inputs.home-manager.nixosModules.default
|
2024-05-12 09:34:40 -04:00
|
|
|
inputs.sops-nix.nixosModules.sops
|
2024-05-13 11:46:31 -04:00
|
|
|
lix-module.nixosModules.default
|
2024-05-16 12:47:19 -04:00
|
|
|
solaar.nixosModules.default
|
2024-05-05 18:43:02 -04:00
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|