0606902ab0
Added for future reference
36 lines
799 B
Nix
36 lines
799 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
stylix = {
|
|
url = "github:nix-community/stylix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
helium = {
|
|
url = "github:AlvaroParker/helium-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
inputs @ {
|
|
nixpkgs,
|
|
home-manager,
|
|
stylix,
|
|
...
|
|
}:
|
|
{
|
|
homeConfigurations."eriq12" = home-manager.lib.homeManagerConfiguration {
|
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
extraSpecialArgs = { inherit inputs; };
|
|
modules = [
|
|
stylix.homeModules.stylix
|
|
./home.nix
|
|
];
|
|
};
|
|
};
|
|
}
|