completely refactor and modularize flake
This commit is contained in:
parent
3b1ed7e281
commit
b7210fcf8e
141 changed files with 884 additions and 2605 deletions
68
modules/default/home-manager/stylix.nix
Normal file
68
modules/default/home-manager/stylix.nix
Normal file
|
@ -0,0 +1,68 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
wallpaper = pkgs.fetchurl {
|
||||
url = "https://files.huwe.mooo.com/Oneshot.png";
|
||||
hash = "sha256-LaIzLCW86sbldE9lk7psbYKaTCjwaPLcoD3il6FalTw=";
|
||||
};
|
||||
in
|
||||
{
|
||||
|
||||
home-manager.users.willifan = {
|
||||
stylix = {
|
||||
enable = true;
|
||||
|
||||
autoEnable = true;
|
||||
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/pasque.yaml";
|
||||
override = {
|
||||
base0D = "F3196E";
|
||||
base0F = "CFAACF";
|
||||
};
|
||||
|
||||
cursor = {
|
||||
name = "Bibata-Modern-Classic";
|
||||
package = pkgs.bibata-cursors;
|
||||
size = 18;
|
||||
};
|
||||
|
||||
fonts = {
|
||||
# packages = [ pkgs.nerdfonts ];
|
||||
# emoji = {
|
||||
# package = pkgs.;
|
||||
# name = "";
|
||||
# };
|
||||
monospace = {
|
||||
package = pkgs.nerd-fonts.jetbrains-mono;
|
||||
name = "JetBrainsMono Nerd Font";
|
||||
};
|
||||
# sansSerif = {
|
||||
# package = pkgs.;
|
||||
# name = "";
|
||||
# };
|
||||
# serif = {
|
||||
# package = pkgs.;
|
||||
# name = "";
|
||||
# };
|
||||
};
|
||||
|
||||
image = wallpaper;
|
||||
|
||||
opacity = {
|
||||
applications = 0.9;
|
||||
desktop = 0.9;
|
||||
popups = 0.9;
|
||||
terminal = 0.9;
|
||||
};
|
||||
|
||||
polarity = "dark";
|
||||
|
||||
iconTheme = {
|
||||
enable = true;
|
||||
dark = "Papirus-Dark";
|
||||
package = pkgs.papirus-icon-theme;
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue