chore: many changes

This commit is contained in:
Nydragon 2024-07-06 16:20:03 +02:00
parent c4f7b6bcbd
commit 2196194308
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
10 changed files with 30 additions and 3 deletions

View file

@ -32,4 +32,5 @@ repos:
entry: typos entry: typos
language: system language: system
files: .* files: .*
exclude: .*\.(png|jpg|jpeg)
stages: [commit] stages: [commit]

View file

@ -30,6 +30,9 @@
-a nixos-rebuild \ -a nixos-rebuild \
-i ${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg -i ${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg
''; '';
revert = ''
env --chdir $HOME/.nixconf sudo nixos-rebuild switch --flake .#$(hostname) --rollback
'';
}; };
}; };
} }

View file

@ -20,12 +20,15 @@ lib.mkIf osConfig.programs.hyprland.enable {
]; ];
exec-once = [ exec-once = [
"${pkgs.hyprpaper}/bin/hyprpaper"
"${pkgs.swaynotificationcenter}/bin/swaync" "${pkgs.swaynotificationcenter}/bin/swaync"
"${pkgs.nextcloud-client}/bin/nextcloud --background" "${pkgs.nextcloud-client}/bin/nextcloud --background"
"${pkgs.kdeconnect}/bin/kdeconnect-indicator" "${pkgs.kdeconnect}/bin/kdeconnect-indicator"
"${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window" "${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"
"${pkgs.waybar}/bin/waybar" "${pkgs.waybar}/bin/waybar"
"${pkgs.keepassxc}/bin/keepassxc" # keepassxc ignores themeing and doesnt show up in system tray otherwise
# Dirty solution but hey
"sleep 3 && ${pkgs.keepassxc}/bin/keepassxc"
"${pkgs.wl-clipboard}/bin/wl-paste --watch ${pkgs.cliphist}/bin/cliphist store -max-items 10" "${pkgs.wl-clipboard}/bin/wl-paste --watch ${pkgs.cliphist}/bin/cliphist store -max-items 10"
(lib.mkIf config.services.hypridle.enable "${pkgs.hypridle}/bin/hypridle") (lib.mkIf config.services.hypridle.enable "${pkgs.hypridle}/bin/hypridle")
]; ];
@ -120,7 +123,7 @@ lib.mkIf osConfig.programs.hyprland.enable {
# https://wiki.hyprland.org/Configuring/Variables/#misc # https://wiki.hyprland.org/Configuring/Variables/#misc
misc = { misc = {
force_default_wallpaper = -1; # Set to 0 or 1 to disable the anime mascot wallpapers force_default_wallpaper = 0; # Set to 0 or 1 to disable the anime mascot wallpapers
disable_hyprland_logo = false; # If true disables the random hyprland logo / anime girl background. :( disable_hyprland_logo = false; # If true disables the random hyprland logo / anime girl background. :(
}; };

View file

@ -0,0 +1,15 @@
{
services.hyprpaper = {
enable = true;
settings =
let
wp = ./wallpaper.jpg;
in
{
ipc = "on";
preload = [ "${wp}" ];
wallpaper = [ ",${wp}" ];
};
};
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 KiB

View file

@ -73,7 +73,8 @@
"networkmanager" "networkmanager"
"wheel" "wheel"
"audio" "audio"
"libvirtd" "libvirtd" # VM OPs
"dialout" # Necessary for serial port interactions
]; ];
shell = pkgs.fish; shell = pkgs.fish;
}; };

View file

@ -18,6 +18,7 @@
../../home/hyprland ../../home/hyprland
../../home/hyprlock ../../home/hyprlock
../../home/hypridle ../../home/hypridle
../../home/hyprpaper
../../home/themes/catppuccin.nix ../../home/themes/catppuccin.nix
../../home ../../home
]; ];

View file

@ -128,6 +128,7 @@
"wheel" "wheel"
"audio" "audio"
"libvirtd" "libvirtd"
"dialout" # Necessary for serial port interactions
]; ];
shell = pkgs.fish; shell = pkgs.fish;
}; };

View file

@ -76,6 +76,7 @@
swaybg swaybg
custom.scripts.screenshot custom.scripts.screenshot
custom.scripts.nixedit
custom.scripts.set-background custom.scripts.set-background
]; ];
}; };

View file

@ -32,6 +32,7 @@ lib.mkIf config.programs.firefox.enable {
# Hides the recommendations tab at about:addons # Hides the recommendations tab at about:addons
"extensions.getAddons.showPane" = false; "extensions.getAddons.showPane" = false;
"browser.shell.checkDefaultBrowser" = false; "browser.shell.checkDefaultBrowser" = false;
"privacy.clearOnShutdown.offlineApps" = true;
}; };
policies = { policies = {
PasswordManagerEnabled = false; PasswordManagerEnabled = false;