paper
This commit is contained in:
parent
94db9bfcd6
commit
9ba3b9d1a7
5 changed files with 26 additions and 21 deletions
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
services.gpg-agent = {
|
services.gpg-agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
pinentryPackage = pkgs.pinentry;
|
pinentryPackage = pkgs.pinentry-gtk2;
|
||||||
enableSshSupport = true;
|
enableSshSupport = true;
|
||||||
sshKeys = [];
|
sshKeys = [];
|
||||||
enableExtraSocket = true;
|
enableExtraSocket = true;
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,22 @@
|
||||||
{ conf, ... }:
|
{ conf, ... }:
|
||||||
{
|
{
|
||||||
home.file.wallpaper = {
|
home.file.".config/hypr/wallpaper.png" = {
|
||||||
target = ".config/hypr/${conf.wallpaper}";
|
source = ../../wallpapers/default.png;
|
||||||
source = ../wallpapers/${conf.wallpaper};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file.hyprpaper = let
|
services.hyprpaper = let
|
||||||
file = home.file.wallpaper.target;
|
default = "/home/${conf.user}/.config/hypr/default.png";
|
||||||
in {
|
in {
|
||||||
target = ".config/hypr/hyprpaper.conf";
|
enable = true;
|
||||||
text = ''
|
|
||||||
preload = ${file}
|
|
||||||
|
|
||||||
wallpaper = ,${file}
|
settings = {
|
||||||
|
splash = false;
|
||||||
|
|
||||||
splash = false
|
preload = [ default ];
|
||||||
'';
|
|
||||||
|
wallpaper = [
|
||||||
|
",${default}"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,22 @@
|
||||||
directories = [
|
directories = [
|
||||||
".config/syncthing"
|
".config/syncthing"
|
||||||
".config/sops"
|
".config/sops"
|
||||||
|
".config/keepassxc"
|
||||||
|
".config/obsidian"
|
||||||
".gnupg"
|
".gnupg"
|
||||||
".local/share/PrismLauncher/instances"
|
|
||||||
".ssh"
|
".ssh"
|
||||||
|
|
||||||
|
".thunderbird"
|
||||||
|
|
||||||
"nixos"
|
"nixos"
|
||||||
"sync"
|
"sync"
|
||||||
|
"obsidian"
|
||||||
"code"
|
"code"
|
||||||
|
".keepass"
|
||||||
|
] ++ lib.optionals config.gaming.enable [
|
||||||
|
".local/share/PrismLauncher/instances"
|
||||||
|
".local/share/PrismLauncher"
|
||||||
|
".local/share/Steam"
|
||||||
];
|
];
|
||||||
files = [];
|
files = [];
|
||||||
};
|
};
|
||||||
|
|
@ -19,15 +28,9 @@
|
||||||
".cache/nix"
|
".cache/nix"
|
||||||
".cache/spotify"
|
".cache/spotify"
|
||||||
".cargo"
|
".cargo"
|
||||||
".config/obsidian"
|
|
||||||
".config/spotify"
|
|
||||||
".local/state/wireplumber"
|
".local/state/wireplumber"
|
||||||
".thunderbird"
|
|
||||||
"tmp"
|
"tmp"
|
||||||
] ++ lib.optionals config.gaming.enable [
|
] ++ lib.optionals config.gaming.enable [
|
||||||
".local/share/PrismLauncher"
|
|
||||||
".local/share/Steam"
|
|
||||||
".steam"
|
|
||||||
];
|
];
|
||||||
files = [];
|
files = [];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
in {
|
in {
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableAutosuggestions = true;
|
autosuggestion.enable = true;
|
||||||
syntaxHighlighting.enable = true;
|
syntaxHighlighting.enable = true;
|
||||||
defaultKeymap = "viins";
|
defaultKeymap = "viins";
|
||||||
autocd = false;
|
autocd = false;
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 1.8 MiB |
Loading…
Add table
Add a link
Reference in a new issue