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
|
entry: typos
|
||||||
language: system
|
language: system
|
||||||
files: .*
|
files: .*
|
||||||
|
exclude: .*\.(png|jpg|jpeg)
|
||||||
stages: [commit]
|
stages: [commit]
|
||||||
|
|
|
@ -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
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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. :(
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
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"
|
"networkmanager"
|
||||||
"wheel"
|
"wheel"
|
||||||
"audio"
|
"audio"
|
||||||
"libvirtd"
|
"libvirtd" # VM OPs
|
||||||
|
"dialout" # Necessary for serial port interactions
|
||||||
];
|
];
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
@ -128,6 +128,7 @@
|
||||||
"wheel"
|
"wheel"
|
||||||
"audio"
|
"audio"
|
||||||
"libvirtd"
|
"libvirtd"
|
||||||
|
"dialout" # Necessary for serial port interactions
|
||||||
];
|
];
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
|
@ -76,6 +76,7 @@
|
||||||
swaybg
|
swaybg
|
||||||
|
|
||||||
custom.scripts.screenshot
|
custom.scripts.screenshot
|
||||||
|
custom.scripts.nixedit
|
||||||
custom.scripts.set-background
|
custom.scripts.set-background
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue