This commit is contained in:
joygnu 2024-07-05 17:42:57 +02:00
parent 20e695f05e
commit 74b9c9a8e8
4 changed files with 26 additions and 2 deletions

View file

@ -19,6 +19,7 @@
specialArgs = {inherit inputs;};
modules = [
./hosts/desktop
inputs.stylix.nixosModules.stylix
];
};
nixosConfigurations.laptop = nixpkgs.lib.nixosSystem {

View file

@ -9,8 +9,6 @@
./gtk
./git
./ags
./stylix
inputs.homeManagerModules.stylix
inputs.nix-colors.homeManagerModules.default
inputs.ags.homeManagerModules.default
];

View file

@ -6,5 +6,6 @@
./packages
./misc
./gdm
./stylix
];
}

View file

@ -0,0 +1,24 @@
{ pkgs, ... }:
{
stylix.base16Scheme = {
base00 = "282828";
base01 = "3c3836";
base02 = "504945";
base03 = "665c54";
base04 = "bdae93";
base05 = "d5c4a1";
base06 = "ebdbb2";
base07 = "fbf1c7";
base08 = "fb4934";
base09 = "fe8019";
base0A = "fabd2f";
base0B = "b8bb26";
base0C = "8ec07c";
base0D = "83a598";
base0E = "d3869b";
base0F = "d65d0e";
};
stylix.image = ../hyprland/wallpaper.png;
}