mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 09:56:34 +01:00
Add universal colorsheme
This commit is contained in:
parent
307a599e63
commit
84bcbdb105
2 changed files with 25 additions and 0 deletions
16
flake.nix
16
flake.nix
|
@ -31,6 +31,20 @@
|
||||||
url = "github:vinceliuice/Tela-icon-theme";
|
url = "github:vinceliuice/Tela-icon-theme";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
catppuccin-base16 = {
|
||||||
|
url = "github:catppuccin/base16";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
stylix = {
|
||||||
|
url = "github:danth/stylix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
inputs.flake-compat.follows = "flake-compat";
|
||||||
|
inputs.base16.follows = "base16";
|
||||||
|
inputs.home-manager.follows = "home-manager";
|
||||||
|
};
|
||||||
|
base16 = {
|
||||||
|
url = "github:SenchoPens/base16.nix";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -107,6 +121,7 @@
|
||||||
./modules/asf
|
./modules/asf
|
||||||
./modules/minecraft-server
|
./modules/minecraft-server
|
||||||
./modules/kate
|
./modules/kate
|
||||||
|
./modules/theming
|
||||||
./modules/auto-update
|
./modules/auto-update
|
||||||
./modules/services/repo-sync
|
./modules/services/repo-sync
|
||||||
./modules/users/jopejoe1
|
./modules/users/jopejoe1
|
||||||
|
@ -121,6 +136,7 @@
|
||||||
nur.nixosModules.nur
|
nur.nixosModules.nur
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
nyx.nixosModules.default
|
nyx.nixosModules.default
|
||||||
|
stylix.nixosModules.stylix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
yokai = nixpkgs.lib.nixosSystem {
|
yokai = nixpkgs.lib.nixosSystem {
|
||||||
|
|
9
modules/theming/default.nix
Normal file
9
modules/theming/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{pkgs, inputs, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
stylix = {
|
||||||
|
image = "${pkgs.libsForQt5.breeze-qt5}/share/wallpapers/Next/contents/images_dark/5120x2880.png";
|
||||||
|
polarity = "dark";
|
||||||
|
base16Scheme = "${inputs.catppuccin-base16}/base16/frappe.yaml";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue