diff options
Diffstat (limited to 'nixos/configuration.nix')
-rw-r--r-- | nixos/configuration.nix | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 57b5b02..fe01c16 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -22,6 +22,13 @@ FLAKE = config.myConfigLocation; GTK_IM_MODULE = lib.mkForce ""; }; + + services.pcscd.enable = true; + programs.gnupg.agent = { + enable = true; + pinentryPackage = pkgs.pinentry-curses; + enableSSHSupport = true; + }; programs.gamescope = { enable = true; capSysNice = true; @@ -82,6 +89,12 @@ }; security.polkit.enable = true; environment.systemPackages = with pkgs; [ + (pass-wayland.withExtensions (exts: [ + exts.pass-otp + exts.pass-import + ])) + gparted + zed-editor libsForQt5.qt5.qtquickcontrols2 libsForQt5.qt5.qtgraphicaleffects ]; @@ -138,7 +151,7 @@ initialPassword = "stevenpassword"; isNormalUser = true; openssh.authorizedKeys.keys = []; - packages = with pkgs; [nh gparted]; + packages = with pkgs; [nh]; extraGroups = ["wheel" "input" "networkmanager"]; }; }; |