stylix adjustments

This commit is contained in:
Danilo Reyes 2024-12-18 13:37:53 -06:00
parent 181babfa2a
commit d5af07a191
3 changed files with 37 additions and 26 deletions

View File

@ -10,30 +10,9 @@
inputs.home-manager.nixosModules.home-manager
./jawz.nix
./modules/modules.nix
./stylix.nix
];
system.stateVersion = "24.11";
stylix = {
enable = true;
image = ./wallpaper.jpeg;
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
};
fonts = {
monospace = {
package = pkgs.nerd-fonts.comic-shanns-mono;
name = "ComicShansMono Nerd Font Mono";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
};
};
sops = {
defaultSopsFormat = "yaml";
defaultSopsFile = ./secrets/secrets.yaml;

View File

@ -1,10 +1,6 @@
{ config, ... }:
{
home.stateVersion = "24.11";
stylix.targets = {
emacs.enable = true;
vesktop.enable = true;
};
programs.bash = {
enable = true;
historyFile = "\${XDG_STATE_HOME}/bash/history";

36
stylix.nix Normal file
View File

@ -0,0 +1,36 @@
{ pkgs, ... }:
{
stylix = {
enable = true;
image = ./wallpapers/classical.jpeg;
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
};
fonts = {
monospace = {
package = pkgs.nerd-fonts.comic-shanns-mono;
name = "ComicShansMono Nerd Font Mono";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
};
};
home-manager.users.jawz.stylix = {
targets = {
vesktop.enable = true;
};
iconTheme = {
enable = true;
package = pkgs.papirus-icon-theme;
light = "Papirus-Light";
dark = "Papirus-Dark";
};
};
}