feat: add meta.username option

This commit is contained in:
Nydragon 2025-01-31 17:21:04 +01:00
parent 1e53b80eee
commit 8b93cf4bde
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
8 changed files with 43 additions and 11 deletions

View file

@ -1,10 +1,12 @@
# vim:fileencoding=utf-8:foldmethod=marker
{
pkgs,
username,
config,
...
}:
let
inherit (config.modules.meta) username;
in
{
imports = [
./hardware-configuration.nix

View file

@ -1,10 +1,12 @@
{
pkgs,
username,
config,
inputs,
...
}:
let
inherit (config.modules.meta) username;
in
{
imports = [
../../modules/home-manager.nix

View file

@ -7,10 +7,12 @@ let
name = sys.hostname;
value = mkSystem ({ inherit withSystem; } // sys);
};
username = "ny";
in
{
flake.nixosConfigurations = listToAttrs [
(mkSystem' {
inherit username;
hostname = "marr";
system = "x86_64-linux";
extraModules = [
@ -20,12 +22,14 @@ in
})
(mkSystem' {
inherit username;
hostname = "brontes";
system = "x86_64-linux";
extraModules = [ inputs.agenix.nixosModules.default ];
})
(mkSystem' {
inherit username;
hostname = "shan";
system = "x86_64-linux";
extraModules = [
@ -35,6 +39,7 @@ in
})
(mkSystem' {
inherit username;
hostname = "raptus";
system = "x86_64-linux";
extraModules = [
@ -44,6 +49,7 @@ in
})
(mkSystem' {
inherit username;
hostname = "nihilus";
system = "aarch64-linux";
extraModules = [

View file

@ -1,10 +1,13 @@
# vim:fileencoding=utf-8:foldmethod=marker
{
config,
pkgs,
inputs,
username,
...
}:
let
inherit (config.modules.meta) username;
in
{
imports = [
./hardware-configuration.nix

View file

@ -1,10 +1,12 @@
{
username,
pkgs,
config,
inputs,
...
}:
let
inherit (config.modules.meta) username;
in
{
imports = [
../../modules/home-manager.nix

View file

@ -1,4 +1,7 @@
{ username, pkgs, ... }:
{ config, pkgs, ... }:
let
inherit (config.modules.meta) username;
in
{
users.users.${username} = {
isNormalUser = true;

View file

@ -1,14 +1,28 @@
{ lib, ... }:
let
inherit (lib) mkOption;
inherit (lib.types) nullOr str;
inherit (lib) mkOption stringLength;
inherit (lib.types) str strMatching;
validateUserName =
x:
assert (
stringLength x < 32 || abort "Username '${x}' is longer than 31 characters which is not allowed!"
);
x;
in
{
options.modules.meta = {
hostname = mkOption {
default = null;
type = nullOr str;
type = strMatching "^[[:alnum:]]([[:alnum:]_-]{0,61}[[:alnum:]])?$";
default = "";
description = "The system's hostname.";
};
username = mkOption {
default = "";
type = str;
apply = validateUserName;
# Should handle multiple users one day? maybe...
description = "This system's primary user.";
};
};
}

View file

@ -32,6 +32,7 @@ in
{
withSystem,
hostname,
username,
extraModules ? [ ],
system,
}:
@ -43,13 +44,12 @@ in
"${self}/hosts/${hostname}"
"${self}/options"
"${self}/modules"
{ modules.meta.hostname = hostname; }
{ modules.meta = { inherit hostname username; }; }
] ++ extraModules;
specialArgs = {
inherit inputs inputs';
inherit self self';
pubkeys = import ../../options/keys.nix { inherit lib; };
username = "ny";
};
}
);