added matugen

This commit is contained in:
chloe 2025-09-28 09:42:52 +02:00
parent 45df03aec8
commit 2016bc4319
2 changed files with 31 additions and 12 deletions

View file

@ -64,6 +64,11 @@
url = "github:moonlight-mod/moonlight/develop"; # Add `/develop` to the flake URL to use nightly.
inputs.nixpkgs.follows = "nixpkgsUnstable";
};
matugen = {
url = "github:/InioX/Matugen";
inputs.nixpkgs.follows = "nixpkgsUnstable";
};
};
outputs =
@ -149,21 +154,28 @@
specialArgs = specialArgs;
modules = [
./hosts/buldak/configuration.nix
lix-module.nixosModules.default
catppuccin.nixosModules.catppuccin
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${username} = {
imports = [./home-manager/home.nix catppuccin.homeModules.catppuccin moonlight.homeModules.default];
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${username} = {
imports = [
./home-manager/home.nix
catppuccin.homeModules.catppuccin
moonlight.homeModules.default
];
home.packages = [
inputs.miovim.packages.${system}.default
];
home.packages = [
inputs.miovim.packages.${system}.default
inputs.matugen.nixosModules.default
];
};
};
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.extraSpecialArgs = { inherit inputs; };
}
];
};
@ -269,8 +281,8 @@
packages.fourget = pkgs.callPackage ./packages/4get.nix { };
homeManager = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {};
modules = [./home-manager/home.nix];
pkgs = import nixpkgs { };
modules = [ ./home-manager/home.nix ];
extraSpecialArgs = specialArgs;
};
};

View file

@ -0,0 +1,7 @@
/*
* Css Colors
* Generated with Matugen
*/
<* for name, value in colors *>
@define-color {{name}} {{value.default.hex}};
<* endfor *>