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 # vim:fileencoding=utf-8:foldmethod=marker
{ {
pkgs, pkgs,
username,
config, config,
... ...
}: }:
let
inherit (config.modules.meta) username;
in
{ {
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,14 +1,28 @@
{ lib, ... }: { lib, ... }:
let let
inherit (lib) mkOption; inherit (lib) mkOption stringLength;
inherit (lib.types) nullOr str; 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 in
{ {
options.modules.meta = { options.modules.meta = {
hostname = mkOption { hostname = mkOption {
default = null; type = strMatching "^[[:alnum:]]([[:alnum:]_-]{0,61}[[:alnum:]])?$";
type = nullOr str; default = "";
description = "The system's hostname."; 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, withSystem,
hostname, hostname,
username,
extraModules ? [ ], extraModules ? [ ],
system, system,
}: }:
@ -43,13 +44,12 @@ in
"${self}/hosts/${hostname}" "${self}/hosts/${hostname}"
"${self}/options" "${self}/options"
"${self}/modules" "${self}/modules"
{ modules.meta.hostname = hostname; } { modules.meta = { inherit hostname username; }; }
] ++ extraModules; ] ++ extraModules;
specialArgs = { specialArgs = {
inherit inputs inputs'; inherit inputs inputs';
inherit self self'; inherit self self';
pubkeys = import ../../options/keys.nix { inherit lib; }; pubkeys = import ../../options/keys.nix { inherit lib; };
username = "ny";
}; };
} }
); );