From 6aaa5993e4c1cfb205ed555d958702f9bba1770d Mon Sep 17 00:00:00 2001 From: adikro Date: Wed, 24 Dec 2025 16:21:00 +0100 Subject: a bunch of changes, renames sys to os and refactored some of the logic --- sys/core/security.nix | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 sys/core/security.nix (limited to 'sys/core/security.nix') diff --git a/sys/core/security.nix b/sys/core/security.nix deleted file mode 100644 index bf43577..0000000 --- a/sys/core/security.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ config, lib, pkgs, ... }: -let - cfg = config.sys.core.security; -in -{ - options.sys.core.security.enable = lib.mkEnableOption "core security services"; - config = lib.mkIf cfg.enable { - services.gnome.gnome-keyring.enable = true; - - security = { - polkit.enable = true; - rtkit.enable = true; - }; - - programs.gnupg.agent = { - enable = true; - enableSSHSupport = true; - pinentryPackage = pkgs.pinentry-curses; - }; - - systemd.user.services.polkit-gnome-authentication-agent-1 = { - description = "gnome-polkit-authentication-agent-1"; - wantedBy = [ "graphical-session.target" ]; - serviceConfig = { - Type = "simple"; - ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; - Restart = "on-failure"; - RestartSec = 1; - TimeoutStopSec = 10; - }; - }; - - environment.systemPackages = with pkgs; [ - veracrypt - bitwarden-desktop - hello - ]; - }; -} -- cgit v1.3