This commit is contained in:
Lilith 2024-06-09 01:04:48 +02:00
parent 94db9bfcd6
commit 9ba3b9d1a7
Signed by: lilith
GPG key ID: 8712A0F317C37175
5 changed files with 26 additions and 21 deletions

View file

@ -6,7 +6,7 @@
services.gpg-agent = {
enable = true;
pinentryPackage = pkgs.pinentry;
pinentryPackage = pkgs.pinentry-gtk2;
enableSshSupport = true;
sshKeys = [];
enableExtraSocket = true;

View file

@ -1,20 +1,22 @@
{ conf, ... }:
{
home.file.wallpaper = {
target = ".config/hypr/${conf.wallpaper}";
source = ../wallpapers/${conf.wallpaper};
home.file.".config/hypr/wallpaper.png" = {
source = ../../wallpapers/default.png;
};
home.file.hyprpaper = let
file = home.file.wallpaper.target;
in {
target = ".config/hypr/hyprpaper.conf";
text = ''
preload = ${file}
services.hyprpaper = let
default = "/home/${conf.user}/.config/hypr/default.png";
in {
enable = true;
wallpaper = ,${file}
settings = {
splash = false;
splash = false
'';
preload = [ default ];
wallpaper = [
",${default}"
];
};
};
}

View file

@ -3,13 +3,22 @@
directories = [
".config/syncthing"
".config/sops"
".config/keepassxc"
".config/obsidian"
".gnupg"
".local/share/PrismLauncher/instances"
".ssh"
".thunderbird"
"nixos"
"sync"
"obsidian"
"code"
".keepass"
] ++ lib.optionals config.gaming.enable [
".local/share/PrismLauncher/instances"
".local/share/PrismLauncher"
".local/share/Steam"
];
files = [];
};
@ -19,15 +28,9 @@
".cache/nix"
".cache/spotify"
".cargo"
".config/obsidian"
".config/spotify"
".local/state/wireplumber"
".thunderbird"
"tmp"
] ++ lib.optionals config.gaming.enable [
".local/share/PrismLauncher"
".local/share/Steam"
".steam"
];
files = [];
};

View file

@ -10,7 +10,7 @@
in {
programs.zsh = {
enable = true;
enableAutosuggestions = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
defaultKeymap = "viins";
autocd = false;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 1.8 MiB

Before After
Before After