mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 14:01:34 +01:00
Treat secret names as strings
This commit is contained in:
parent
285367da58
commit
e333333914
4 changed files with 9 additions and 7 deletions
|
|
@ -1,11 +1,11 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
sops.secrets.seb-password.neededForUsers = true;
|
||||
sops.secrets."seb-password".neededForUsers = true;
|
||||
|
||||
users.users.seb = {
|
||||
isNormalUser = true;
|
||||
description = "Sebastian Stork";
|
||||
hashedPasswordFile = config.sops.secrets.seb-password.path;
|
||||
hashedPasswordFile = config.sops.secrets."seb-password".path;
|
||||
shell = pkgs.zsh;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue