change the theming to stylix, set a background image, and set cursors automagically
This commit is contained in:
parent
382913f15d
commit
99cd42ce60
10 changed files with 447 additions and 98 deletions
|
@ -1,9 +1,6 @@
|
|||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
# You can import other home-manager modules here
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
{...}: {
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
catppuccin.enable = true;
|
||||
# catppuccin.enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
font = "Fira Code:size=11";
|
||||
};
|
||||
|
||||
mouse = {
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
homeDirectory = "/home/lillian";
|
||||
};
|
||||
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
flavor = "macchiato";
|
||||
};
|
||||
# catppuccin = {
|
||||
# enable = true;
|
||||
# flavor = "macchiato";
|
||||
# };
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# System tools:
|
||||
|
@ -36,4 +36,31 @@
|
|||
_7zz = pkgs._7zz.override {useUasm = true;};
|
||||
};
|
||||
};
|
||||
# stylix = {
|
||||
# enable = true;
|
||||
# autoEnable = true;
|
||||
# base16Scheme = {
|
||||
# scheme = "Catppuccin Macchiato";
|
||||
# author = "https://github.com/catppuccin/catppuccin";
|
||||
# base00 = "24273a";
|
||||
# base01 = "1e2030";
|
||||
# base02 = "363a4f";
|
||||
# base03 = "494d64";
|
||||
# base04 = "5b6078";
|
||||
# base05 = "cad3f5";
|
||||
# base06 = "f4dbd6";
|
||||
# base07 = "b7bdf8";
|
||||
# base08 = "ed8796";
|
||||
# base09 = "f5a97f";
|
||||
# base0A = "eed49f";
|
||||
# base0B = "a6da95";
|
||||
# base0C = "8bd5ca";
|
||||
# base0D = "8aadf4";
|
||||
# base0E = "c6a0f6";
|
||||
# base0F = "f0c6c6";
|
||||
# };
|
||||
# image = ./background.jpg;
|
||||
# cursor.package = pkgs.catppuccin-cursors;
|
||||
# cursor.name = "macchiatoMauve";
|
||||
# };
|
||||
}
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
programs.bat = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs.bat-extras; [batdiff batman batgrep batwatch];
|
||||
catppuccin.enable = true;
|
||||
# catppuccin.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -174,7 +174,7 @@ in {
|
|||
enableZshIntegration = true;
|
||||
settings = {
|
||||
session_serialization = true;
|
||||
theme = "catppuccin-macchiato";
|
||||
# theme = "catppuccin-macchiato";
|
||||
|
||||
themes = {
|
||||
catppuccin-mocha = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue