add missing gpgagent conf for fourside

This commit is contained in:
Swarsel 2024-02-07 17:22:11 +01:00
parent d2991c3bbf
commit d6b9ea90b9
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
3 changed files with 16 additions and 29 deletions

21
Nix.org
View file

@ -1291,19 +1291,10 @@ New setup for the SP3, this time using NixOS - another machine will take over th
greetd.settings.initial_session.user="swarsel"; greetd.settings.initial_session.user="swarsel";
}; };
# Bootloader boot = {
# boot.loader.grub.enable = true; loader.systemd-boot.enable = true;
# boot.loader.grub.device = "/dev/sda"; # TEMPLATE - if only one disk, this will work loader.efi.canTouchEfiVariables = true;
# boot.loader.grub.useOSProber = true; };
# --------------------------------------
# you might need a configuration like this instead:
# Bootloader
# boot.loader.grub.enable = true;
# boot.loader.grub.devices = ["nodev" ];
# boot.loader.grub.useOSProber = true;
# boot.kernelPackages = pkgs.linuxPackages_latest;
# --------------------------------------
networking.hostName = "fourside"; # Define your hostname. networking.hostName = "fourside"; # Define your hostname.
@ -1343,7 +1334,7 @@ New setup for the SP3, this time using NixOS - another machine will take over th
{ {
<<gpgconf>> <<gpgagent>>
home = { home = {
username = "swarsel"; username = "swarsel";
homeDirectory = "/home/swarsel"; homeDirectory = "/home/swarsel";
@ -1375,7 +1366,7 @@ New setup for the SP3, this time using NixOS - another machine will take over th
# xkb_options = "grp:win_space_toggle"; # xkb_options = "grp:win_space_toggle";
# # xkb_options = "ctrl:nocaps,grp:win_space_toggle"; # # xkb_options = "ctrl:nocaps,grp:win_space_toggle";
# xkb_variant = "altgr-intl"; # xkb_variant = "altgr-intl";
}; # };
"type:touchpad" = { "type:touchpad" = {
dwt = "enabled"; dwt = "enabled";
tap = "enabled"; tap = "enabled";

View file

@ -3,6 +3,11 @@
{ {
services.gpg-agent = {
enable = true;
enableSshSupport = true;
};
home = { home = {
username = "swarsel"; username = "swarsel";
homeDirectory = "/home/swarsel"; homeDirectory = "/home/swarsel";
@ -51,7 +56,7 @@
# xkb_options = "grp:win_space_toggle"; # xkb_options = "grp:win_space_toggle";
# # xkb_options = "ctrl:nocaps,grp:win_space_toggle"; # # xkb_options = "ctrl:nocaps,grp:win_space_toggle";
# xkb_variant = "altgr-intl"; # xkb_variant = "altgr-intl";
}; # };
"type:touchpad" = { "type:touchpad" = {
dwt = "enabled"; dwt = "enabled";
tap = "enabled"; tap = "enabled";

View file

@ -14,19 +14,10 @@
greetd.settings.initial_session.user="swarsel"; greetd.settings.initial_session.user="swarsel";
}; };
# Bootloader boot = {
# boot.loader.grub.enable = true; loader.systemd-boot.enable = true;
# boot.loader.grub.device = "/dev/sda"; # TEMPLATE - if only one disk, this will work loader.efi.canTouchEfiVariables = true;
# boot.loader.grub.useOSProber = true; };
# --------------------------------------
# you might need a configuration like this instead:
# Bootloader
# boot.loader.grub.enable = true;
# boot.loader.grub.devices = ["nodev" ];
# boot.loader.grub.useOSProber = true;
# boot.kernelPackages = pkgs.linuxPackages_latest;
# --------------------------------------
networking.hostName = "fourside"; # Define your hostname. networking.hostName = "fourside"; # Define your hostname.