From 44d03fb8ad1d13b8f488b6f7d81d7a8b406d0c91 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Wed, 11 Feb 2026 13:45:39 -0500 Subject: [PATCH] trust users --- hosts/xps15/configuration.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/hosts/xps15/configuration.nix b/hosts/xps15/configuration.nix index 47ca046..30dd680 100644 --- a/hosts/xps15/configuration.nix +++ b/hosts/xps15/configuration.nix @@ -37,10 +37,6 @@ services.pcscd.enable = true; i18n.defaultLocale = "en_US.UTF-8"; - nix.extraOptions = '' - experimental-features = nix-command flakes - ''; - security.pam.services.hyprlock = { }; security.doas = { @@ -144,10 +140,16 @@ dmidecode ]; - nix.settings.experimental-features = [ - "nix-command" - "flakes" - ]; + nix.settings = { + experimental-features = [ + "nix-command" + "flakes" + ]; + trusted-users = [ + "root" + "barrett" + ]; + }; system.stateVersion = "24.11"; }