diff --git a/README.md b/README.md index 31eec77..706b38f 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,8 @@ keys for decrypting password secrets for each users located at ~/.config/sops/ag updating passwords: `sops secrets/secrets.yaml` +TODO: keys.txt should prob be readable by owning user only? + > how the current config was set up https://www.youtube.com/watch?v=G5f6GC7SnhU -> look into this? https://technotim.live/posts/rotate-sops-encryption-keys/ +> look into this? `https://technotim.live/posts/rotate-sops-encryption-keys/` \ No newline at end of file diff --git a/hosts/defiant/configuration.nix b/hosts/defiant/configuration.nix index 123d612..735d31e 100644 --- a/hosts/defiant/configuration.nix +++ b/hosts/defiant/configuration.nix @@ -16,8 +16,10 @@ sops.age.keyFile = "/home/leyla/.config/sops/age/keys.txt"; - users.leyla.isNormalUser = true; - users.leyla.isThinInstallation = true; + users.leyla = { + isNormalUser = true; + isThinInstallation = true; + }; users.ester.isNormalUser = false; users.eve.isNormalUser = false; diff --git a/hosts/twilight/configuration.nix b/hosts/twilight/configuration.nix index c2145e9..eee38be 100644 --- a/hosts/twilight/configuration.nix +++ b/hosts/twilight/configuration.nix @@ -16,7 +16,13 @@ sops.age.keyFile = "/home/leyla/.config/sops/age/keys.txt"; - users.leyla.isNormalUser = true; + users.leyla = { + isNormalUser = true; + hasPiperMouse = true; + hasOpenRGBHardware = true; + hasViaKeyboard = true; + hasGPU = true; + }; users.ester.isNormalUser = true; users.eve.isNormalUser = true;