56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{
|
|
description = "Rhea's flakes";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
|
|
catppuccin.url = "github:catppuccin/nix";
|
|
|
|
agenix.url = "github:ryantm/agenix";
|
|
|
|
spicetify-nix = {
|
|
url = "github:Gerg-L/spicetify-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nix-index-database = {
|
|
url = "github:nix-community/nix-index-database";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
# lesbian the nix
|
|
lix-module = {
|
|
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-1.tar.gz";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, nixos-hardware, agenix, spicetify-nix, nix-index-database, lix-module, ... } @ inputs: {
|
|
nixosConfigurations.rhea-laptop = nixpkgs.lib.nixosSystem {
|
|
specialArgs = {
|
|
inherit inputs;
|
|
inherit spicetify-nix;
|
|
inherit agenix;
|
|
};
|
|
|
|
system = "x86_64-linux";
|
|
|
|
# List all Modules to load
|
|
modules = [
|
|
nixos-hardware.nixosModules.framework-13-7040-amd
|
|
lix-module.nixosModules.default
|
|
nix-index-database.nixosModules.nix-index
|
|
agenix.nixosModules.default
|
|
./modules
|
|
./home
|
|
];
|
|
};
|
|
};
|
|
}
|