gpg change and fixing (again) protonmail

This commit is contained in:
afoucaultc 2026-08-08 14:16:19 +02:00
parent d72fac9730
commit db38c76bb0
12 changed files with 25 additions and 21 deletions

View file

@ -1 +1 @@
/nix/store/33xkglgxywlshxi7d3mqb9plbv8z30zm-home-manager-files/.config/hypr/.luarc.json
/nix/store/m7baqiydal7zmd55ki3lbh7qqc8xr0ms-home-manager-files/.config/hypr/.luarc.json

View file

@ -1,12 +1,9 @@
-- shutdown hyprland and lock
hl.bind("CTRL + ALT + M", function()
if os.execute("command -v hyprshutdown >/dev/null 2>&1") then
hl.dsp.exec_cmd("hyprshutdown")()
else
hl.dsp.exit()
end
end, { description = "hyprland shutdown" })
hl.bind(
"CTRL + ALT + M",
hl.dsp.exec_cmd("command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch exit"),
{ description = "hyprland shutdown" }
)
hl.bind("CTRL + ALT + L", hl.dsp.exec_cmd(lockscreen))
-- launchers
hl.bind("ALT + D", hl.dsp.exec_cmd(fileManager))

View file

@ -1 +1 @@
/nix/store/33xkglgxywlshxi7d3mqb9plbv8z30zm-home-manager-files/.config/hypr/hyprland.lua
/nix/store/m7baqiydal7zmd55ki3lbh7qqc8xr0ms-home-manager-files/.config/hypr/hyprland.lua

View file

@ -1 +1 @@
/nix/store/33xkglgxywlshxi7d3mqb9plbv8z30zm-home-manager-files/.config/inkscape/palettes
/nix/store/m7baqiydal7zmd55ki3lbh7qqc8xr0ms-home-manager-files/.config/inkscape/palettes

View file

@ -1 +1 @@
/nix/store/33xkglgxywlshxi7d3mqb9plbv8z30zm-home-manager-files/.config/inkscape/templates
/nix/store/m7baqiydal7zmd55ki3lbh7qqc8xr0ms-home-manager-files/.config/inkscape/templates

View file

@ -1 +1 @@
/nix/store/33xkglgxywlshxi7d3mqb9plbv8z30zm-home-manager-files/.config/kitty/kitty.conf
/nix/store/m7baqiydal7zmd55ki3lbh7qqc8xr0ms-home-manager-files/.config/kitty/kitty.conf

View file

@ -9,6 +9,7 @@
./packages/btop.nix
./packages/firefox.nix
./packages/git.nix
./packages/security.nix
./packages/hyprland.nix
./packages/kitty.nix
./packages/mpv.nix

View file

@ -9,6 +9,7 @@
./packages/btop.nix
./packages/firefox.nix
./packages/git.nix
./packages/security.nix
./packages/hyprland.nix
./packages/kitty.nix
./packages/mpv.nix

View file

@ -42,7 +42,7 @@
};
focus-follows-mouse = {
enable = true;
enable = false;
};
};

View file

@ -11,13 +11,6 @@
"${config.home.homeDirectory}/nixos-config/dotfiles/hypr/wallpaper/nix-wallpaper.png"
];
}
{
command = [
"gnome-keyring-daemon"
"--start"
"--components=secrets"
];
}
];
environment = {
#DISPLAY = null;

View file

@ -0,0 +1,11 @@
{ ... }:
{
services.gnome-keyring = {
enable = true;
components = [ "secrets" ];
};
programs.gpg.enable = true;
services.gpg-agent = {
enable = true;
};
}

View file

@ -4,6 +4,7 @@
git
vim
gnumake
gnupg
gcc
wget
curl