32 lines
853 B
Nix
32 lines
853 B
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";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, nixos-hardware, ... } @ inputs: {
|
|
nixosConfigurations.rhea-laptop = nixpkgs.lib.nixosSystem {
|
|
specialArgs = { inherit inputs; };
|
|
|
|
system = "x86_64-linux";
|
|
|
|
# List all Modules to load
|
|
modules = [
|
|
nixos-hardware.nixosModules.framework-13-7040-amd
|
|
./modules/configuration.nix
|
|
./modules/hardware-configuration.nix
|
|
./modules/shell.nix
|
|
./modules/wayland.nix
|
|
./modules/fingerprint.nix
|
|
./home
|
|
# ./modules/hyprland.nix
|
|
];
|
|
};
|
|
};
|
|
}
|