gpg change and fixing (again) protonmail
This commit is contained in:
parent
d72fac9730
commit
db38c76bb0
12 changed files with 25 additions and 21 deletions
|
|
@ -1 +1 @@
|
||||||
/nix/store/33xkglgxywlshxi7d3mqb9plbv8z30zm-home-manager-files/.config/hypr/.luarc.json
|
/nix/store/m7baqiydal7zmd55ki3lbh7qqc8xr0ms-home-manager-files/.config/hypr/.luarc.json
|
||||||
|
|
@ -1,12 +1,9 @@
|
||||||
-- shutdown hyprland and lock
|
-- shutdown hyprland and lock
|
||||||
hl.bind("CTRL + ALT + M", function()
|
hl.bind(
|
||||||
if os.execute("command -v hyprshutdown >/dev/null 2>&1") then
|
"CTRL + ALT + M",
|
||||||
hl.dsp.exec_cmd("hyprshutdown")()
|
hl.dsp.exec_cmd("command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch exit"),
|
||||||
else
|
{ description = "hyprland shutdown" }
|
||||||
hl.dsp.exit()
|
)
|
||||||
end
|
|
||||||
end, { description = "hyprland shutdown" })
|
|
||||||
|
|
||||||
hl.bind("CTRL + ALT + L", hl.dsp.exec_cmd(lockscreen))
|
hl.bind("CTRL + ALT + L", hl.dsp.exec_cmd(lockscreen))
|
||||||
-- launchers
|
-- launchers
|
||||||
hl.bind("ALT + D", hl.dsp.exec_cmd(fileManager))
|
hl.bind("ALT + D", hl.dsp.exec_cmd(fileManager))
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
/nix/store/33xkglgxywlshxi7d3mqb9plbv8z30zm-home-manager-files/.config/hypr/hyprland.lua
|
/nix/store/m7baqiydal7zmd55ki3lbh7qqc8xr0ms-home-manager-files/.config/hypr/hyprland.lua
|
||||||
|
|
@ -1 +1 @@
|
||||||
/nix/store/33xkglgxywlshxi7d3mqb9plbv8z30zm-home-manager-files/.config/inkscape/palettes
|
/nix/store/m7baqiydal7zmd55ki3lbh7qqc8xr0ms-home-manager-files/.config/inkscape/palettes
|
||||||
|
|
@ -1 +1 @@
|
||||||
/nix/store/33xkglgxywlshxi7d3mqb9plbv8z30zm-home-manager-files/.config/inkscape/templates
|
/nix/store/m7baqiydal7zmd55ki3lbh7qqc8xr0ms-home-manager-files/.config/inkscape/templates
|
||||||
|
|
@ -1 +1 @@
|
||||||
/nix/store/33xkglgxywlshxi7d3mqb9plbv8z30zm-home-manager-files/.config/kitty/kitty.conf
|
/nix/store/m7baqiydal7zmd55ki3lbh7qqc8xr0ms-home-manager-files/.config/kitty/kitty.conf
|
||||||
|
|
@ -9,6 +9,7 @@
|
||||||
./packages/btop.nix
|
./packages/btop.nix
|
||||||
./packages/firefox.nix
|
./packages/firefox.nix
|
||||||
./packages/git.nix
|
./packages/git.nix
|
||||||
|
./packages/security.nix
|
||||||
./packages/hyprland.nix
|
./packages/hyprland.nix
|
||||||
./packages/kitty.nix
|
./packages/kitty.nix
|
||||||
./packages/mpv.nix
|
./packages/mpv.nix
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@
|
||||||
./packages/btop.nix
|
./packages/btop.nix
|
||||||
./packages/firefox.nix
|
./packages/firefox.nix
|
||||||
./packages/git.nix
|
./packages/git.nix
|
||||||
|
./packages/security.nix
|
||||||
./packages/hyprland.nix
|
./packages/hyprland.nix
|
||||||
./packages/kitty.nix
|
./packages/kitty.nix
|
||||||
./packages/mpv.nix
|
./packages/mpv.nix
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
focus-follows-mouse = {
|
focus-follows-mouse = {
|
||||||
enable = true;
|
enable = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,13 +11,6 @@
|
||||||
"${config.home.homeDirectory}/nixos-config/dotfiles/hypr/wallpaper/nix-wallpaper.png"
|
"${config.home.homeDirectory}/nixos-config/dotfiles/hypr/wallpaper/nix-wallpaper.png"
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
|
||||||
command = [
|
|
||||||
"gnome-keyring-daemon"
|
|
||||||
"--start"
|
|
||||||
"--components=secrets"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
environment = {
|
environment = {
|
||||||
#DISPLAY = null;
|
#DISPLAY = null;
|
||||||
|
|
|
||||||
11
home/afoucaultc/packages/security.nix
Normal file
11
home/afoucaultc/packages/security.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
services.gnome-keyring = {
|
||||||
|
enable = true;
|
||||||
|
components = [ "secrets" ];
|
||||||
|
};
|
||||||
|
programs.gpg.enable = true;
|
||||||
|
services.gpg-agent = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
git
|
git
|
||||||
vim
|
vim
|
||||||
gnumake
|
gnumake
|
||||||
|
gnupg
|
||||||
gcc
|
gcc
|
||||||
wget
|
wget
|
||||||
curl
|
curl
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue