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
language: system
files: .*
exclude: .*\.(png|jpg|jpeg)
stages: [commit]

View file

@ -30,6 +30,9 @@
-a nixos-rebuild \
-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 = [
"${pkgs.hyprpaper}/bin/hyprpaper"
"${pkgs.swaynotificationcenter}/bin/swaync"
"${pkgs.nextcloud-client}/bin/nextcloud --background"
"${pkgs.kdeconnect}/bin/kdeconnect-indicator"
"${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"
"${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"
(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
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. :(
};

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"
"wheel"
"audio"
"libvirtd"
"libvirtd" # VM OPs
"dialout" # Necessary for serial port interactions
];
shell = pkgs.fish;
};

View file

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

View file

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

View file

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

View file

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