feat(modules/secrets): set rafiq password from sops

This commit is contained in:
Mohammad Rafiq 2025-05-18 23:04:00 +08:00
parent 7a18d65b0c
commit 391ed94ab4
No known key found for this signature in database
4 changed files with 10 additions and 10 deletions

View file

@ -10,7 +10,8 @@
options.system = { options.system = {
hostname = lib.pantheon.mkStrOption; hostname = lib.pantheon.mkStrOption;
mainUser = lib.pantheon.mkStrOption; mainUser.name = lib.pantheon.mkStrOption;
mainUser.publicKey = lib.pantheon.mkStrOption;
bootloader = lib.pantheon.mkStrOption; bootloader = lib.pantheon.mkStrOption;
}; };

View file

@ -5,19 +5,17 @@
users.mutableUsers = false; users.mutableUsers = false;
users.groups.users = { users.groups.users = {
gid = 100; gid = 100;
members = [ "${config.system.mainUser}" ]; members = [ "${config.system.mainUser.name}" ];
}; };
users.users."${config.system.mainUser}" = { users.users."${config.system.mainUser.name}" = {
linger = true; linger = true;
uid = 1000; uid = 1000;
isNormalUser = true; isNormalUser = true;
initialPassword = "1"; hashedPasswordFile = config.sops.secrets."${config.system.mainUser.name}/hashedPassword".path;
extraGroups = [ "wheel" ]; extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [ config.system.mainUser.publicKey ];
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILdsZyY3gu8IGB8MzMnLdh+ClDxQQ2RYG9rkeetIKq8n"
];
}; };
services.getty.autologinUser = config.system.mainUser; services.getty.autologinUser = config.system.mainUser.name;
} }
]; ];
} }

View file

@ -1,7 +1,8 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
system.hostname = "nemesis"; system.hostname = "nemesis";
system.mainUser = "rafiq"; system.mainUser.name = "rafiq";
system.mainUser.publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILdsZyY3gu8IGB8MzMnLdh+ClDxQQ2RYG9rkeetIKq8n";
system.bootloader = "systemd-boot"; system.bootloader = "systemd-boot";
hardware.drives.btrfs = { hardware.drives.btrfs = {
enable = true; enable = true;