added hyprland :)

This commit is contained in:
Charlie Root 2024-05-04 15:00:14 +02:00
commit cce12a0d08
10 changed files with 147 additions and 20 deletions

View file

@ -6,6 +6,7 @@ _: {
./mpv.nix
./qt.nix
./zathura.nix
./stylix.nix
./rofi.nix
./kitty.nix
./vivado.nix

View file

@ -17,6 +17,7 @@ in {
'';
extraPackages = epkgs: [
epkgs.evil
epkgs.gruvbox-theme
];
};

View file

@ -10,13 +10,13 @@ in {
programs.kitty = {
enable = true;
settings = {
font_size = "13.0";
# font_size = "13.0";
mouse_hide_wait = -1;
url_style = "curly";
open_url_with = "default";
background_opacity = "0.9";
#background_opacity = "0.9";
confirm_os_window_close = "0";
font_family = "JetBrainsMono Nerd Font";
#font_family = "JetBrainsMono Nerd Font";
cursor_text_color = "background";

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, pkgs, lib, ... }:
with lib; let
cfg = config.modules.programs.stylix;
username = config.modules.other.system.username;
@ -7,20 +7,58 @@ in {
config = mkIf cfg.enable {
home-manager.users.${username} = {
programs.btop = {
enable = true;
settings = {
theme_background = false;
vim_keys = true;
update_ms = 1000;
cpu_single_graph = true;
clock_format = "%X";
use_fstab = true;
io_mode = true;
net_sync = true;
net_iface = "enp4s0";
log_level = "WARNING";
stylix = {
autoEnable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-soft.yaml";
polarity = "dark";
targets = {
btop.enable = true;
fish.enable = true;
emacs.enable = true;
firefox.enable = true;
kitty.enable = true;
lazygit.enable = true;
rofi.enable = true;
tmux.enable = true;
vim.enable = true;
zathura.enable = true;
gtk.enable = true;
};
opacity = {
applications = 0.9;
popups = 0.9;
desktop = 0.9;
};
fonts = {
sizes = {
terminal = 14;
popups = 14;
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
monospace = {
package = (pkgs.nerdfonts.override {fonts = ["JetBrainsMono"];});
name = "JetBrainsMono";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
};
};
};
stylix = {
image = ../../hosts/vali/mars/2024-04-21-14-50.png;
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
};
};
};