♻️ [shared] Move gnome-keyring to base
This commit is contained in:
@ -1,8 +1,4 @@
|
||||
{
|
||||
lib,
|
||||
systemConfig,
|
||||
...
|
||||
}:
|
||||
{ lib, ... }:
|
||||
|
||||
{
|
||||
imports = with lib.custom; [
|
||||
@ -11,6 +7,4 @@
|
||||
./hardware.nix
|
||||
./security
|
||||
];
|
||||
|
||||
system.stateVersion = systemConfig.version;
|
||||
}
|
||||
|
@ -1,17 +1,8 @@
|
||||
{ lib, ... }:
|
||||
|
||||
{
|
||||
imports = with lib.custom; [
|
||||
(relativeToRoot "shared/modules/security/ssh.nix")
|
||||
imports = [
|
||||
./firewall.nix
|
||||
];
|
||||
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
services = {
|
||||
pcscd.enable = true;
|
||||
gnome.gnome-keyring.enable = true;
|
||||
};
|
||||
programs.gnupg.agent.enableSSHSupport = true;
|
||||
services.pcscd.enable = true;
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
{
|
||||
imports = [
|
||||
./keyring.nix
|
||||
./sops.nix
|
||||
./ssh.nix
|
||||
];
|
||||
|
3
shared/base/modules/security/keyring.nix
Normal file
3
shared/base/modules/security/keyring.nix
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
}
|
@ -21,7 +21,6 @@
|
||||
programs.dconf.enable = true; # Required for some gnome applications
|
||||
|
||||
services = {
|
||||
gnome.gnome-keyring.enable = true;
|
||||
gvfs.enable = true; # Gnome Virtual File-system. Required for various things in nautilus
|
||||
udev.packages = with pkgs; [ gnome-settings-daemon ];
|
||||
};
|
||||
|
Reference in New Issue
Block a user