hyprland: setup hyprpanel, fix nvidia issues, accomodate new shadow config

a big part of this was an accidental commit of the gitbutler integration commit that i accidently commited when it broke due to nix rust issues. the new server was also added in this, but further config happens in #1
This commit is contained in:
Christoph Hollizeck 2024-11-08 00:37:31 +01:00
parent b1c236bd05
commit 42fdf7d511
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
10 changed files with 89 additions and 14 deletions

View file

@ -38,9 +38,8 @@ in
'';
shellAliases = {
vim = "hx";
ls = "colorls --gs -A";
ll = "ls -l";
lt = "colorls --tree";
ls = "eza -lh --icons --git";
lss = "ls --total-size";
};
plugins = with pkgs.fishPlugins; [
{

View file

@ -17,6 +17,27 @@ in
config = mkIf cfg.enable {
home.packages = [ pkgs.kitty ];
home.sessionVariables.TERMINAL = "kitty";
# TODO: move this to a thunar specific module
home.file.".config/Thunar/uca.xml".text = ''
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<icon>kitty</icon>
<name>Open Kitty here</name>
<submenu></submenu>
<unique-id>1726095927116900-1</unique-id>
<command>${pkgs.kitty}/bin/kitty %f</command>
<description>Example for a custom action</description>
<range></range>
<patterns>*</patterns>
<startup-notify/>
<directories/>
</action>
</actions>
'';
programs.kitty = {
enable = true;
themeFile = "tokyo_night_night";