chore: many changes
This commit is contained in:
parent
c4f7b6bcbd
commit
2196194308
10 changed files with 30 additions and 3 deletions
|
@ -32,4 +32,5 @@ repos:
|
|||
entry: typos
|
||||
language: system
|
||||
files: .*
|
||||
exclude: .*\.(png|jpg|jpeg)
|
||||
stages: [commit]
|
||||
|
|
|
@ -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
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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. :(
|
||||
};
|
||||
|
||||
|
|
15
home/hyprpaper/default.nix
Normal file
15
home/hyprpaper/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
services.hyprpaper = {
|
||||
enable = true;
|
||||
settings =
|
||||
let
|
||||
wp = ./wallpaper.jpg;
|
||||
in
|
||||
|
||||
{
|
||||
ipc = "on";
|
||||
preload = [ "${wp}" ];
|
||||
wallpaper = [ ",${wp}" ];
|
||||
};
|
||||
};
|
||||
}
|
BIN
home/hyprpaper/wallpaper.jpg
Normal file
BIN
home/hyprpaper/wallpaper.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 308 KiB |
|
@ -73,7 +73,8 @@
|
|||
"networkmanager"
|
||||
"wheel"
|
||||
"audio"
|
||||
"libvirtd"
|
||||
"libvirtd" # VM OPs
|
||||
"dialout" # Necessary for serial port interactions
|
||||
];
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
../../home/hyprland
|
||||
../../home/hyprlock
|
||||
../../home/hypridle
|
||||
../../home/hyprpaper
|
||||
../../home/themes/catppuccin.nix
|
||||
../../home
|
||||
];
|
||||
|
|
|
@ -128,6 +128,7 @@
|
|||
"wheel"
|
||||
"audio"
|
||||
"libvirtd"
|
||||
"dialout" # Necessary for serial port interactions
|
||||
];
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
|
|
|
@ -76,6 +76,7 @@
|
|||
swaybg
|
||||
|
||||
custom.scripts.screenshot
|
||||
custom.scripts.nixedit
|
||||
custom.scripts.set-background
|
||||
];
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue