refactor: rename global from faucet

This commit is contained in:
514fpv 2024-01-07 22:01:31 +08:00
parent a28c7b9fb3
commit 95dd5cbd6c
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
31 changed files with 40 additions and 40 deletions

View file

@ -2,9 +2,9 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.android;
cfg = config.global.android;
in {
options.faucet.android = {
options.global.android = {
enable = mkEnableOption "android tools";
};

View file

@ -2,9 +2,9 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.asusd;
cfg = config.global.asusd;
in {
options.faucet.asusd = {
options.global.asusd = {
enable = mkEnableOption "ASUS laptop userland support daemon";
};

View file

@ -2,14 +2,14 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.auth;
cfg = config.global.auth;
pub = lib.pipe ./pub [
builtins.readDir
(lib.filterAttrs (n: ty: ty == "regular"))
(lib.mapAttrsToList (n: _: builtins.readFile ./pub/${n}))
];
in {
options.faucet.auth = {
options.global.auth = {
enable = mkEnableOption "identity authentication in various software" // { default = true; };
openssh = {
enable = mkEnableOption "openssh server";

View file

@ -2,9 +2,9 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.boot;
cfg = config.global.boot;
in {
options.faucet.boot = {
options.global.boot = {
enable = mkEnableOption "bootloader installation and maintenance" // { default = true; };
systemd-boot = mkEnableOption "generation selection via systemd-boot" // { default = !cfg.lanzaboote; };
lanzaboote = mkEnableOption "secure boot maintenance via lanzaboote";

View file

@ -2,9 +2,9 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.fs;
cfg = config.global.fs;
in {
options.faucet.fs.btrfs = {
options.global.fs.btrfs = {
options = mkOption {
type = with types; listOf str;
default = [ "noatime" "compress=zstd" ];

View file

@ -2,7 +2,7 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.fs;
cfg = config.global.fs;
in {
imports = [
./ext4.nix
@ -11,7 +11,7 @@ in {
./btrfs.nix
];
options.faucet.fs = {
options.global.fs = {
type = mkOption {
type = with types; enum [ "ext4" "xfs" "bcachefs" "btrfs" ];
default = "bcachefs";

View file

@ -1,7 +1,7 @@
{ lib
, config
, ... }: with lib; let
cfg = config.faucet.fs;
cfg = config.global.fs;
in mkIf (cfg.type == "ext4") {
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/${cfg.store}";

View file

@ -1,7 +1,7 @@
{ lib
, config
, ... }: with lib; let
cfg = config.faucet.fs;
cfg = config.global.fs;
in mkIf (cfg.type == "xfs") {
# NOTE: -m reflink=1
fileSystems."/nix" =

View file

@ -2,7 +2,7 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.gui;
cfg = config.global.gui;
intel = cfg.type == "intel" || (cfg.type == "prime" && config.hardware.nvidia.prime.intelBusId != "");
amdgpu = cfg.type == "amdgpu" || (cfg.type == "prime" && config.hardware.nvidia.prime.amdgpuBusId != "");
@ -13,7 +13,7 @@ in {
./greetd.nix
];
options.faucet.gui = {
options.global.gui = {
enable = mkEnableOption "various setup required for GUI and support software";
session = mkEnableOption "software required for a graphical session" // { default = true; };
type = mkOption {

View file

@ -2,7 +2,7 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.gui;
cfg = config.global.gui;
in mkIf (cfg.enable && cfg.session) {
programs.regreet = {
enable = true;

View file

@ -2,7 +2,7 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.gui;
cfg = config.global.gui;
in mkIf cfg.enable {
boot = {
loader.timeout = lib.mkDefault 0;

View file

@ -2,9 +2,9 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.id;
cfg = config.global.id;
in {
options.faucet.id = mkOption {
options.global.id = mkOption {
type = with types; str;
description = "systemd machine id";
};

View file

@ -2,9 +2,9 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.io;
cfg = config.global.io;
in {
options.faucet.io = {
options.global.io = {
betaflight = mkEnableOption "betaflight udev rules" // { default = true; };
bluetooth = mkEnableOption "bluetooth daemons and state persistence" // { default = true; };
audio = mkEnableOption "pulseaudio server configuration" // { default = true; };

View file

@ -2,9 +2,9 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.kernel;
cfg = config.global.kernel;
in {
options.faucet.kernel = {
options.global.kernel = {
enable = mkEnableOption "kernel version and configuration" // { default = true; };
lts = mkEnableOption "longterm kernel releases";
sysctl = {

View file

@ -2,9 +2,9 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.libvirt;
cfg = config.global.libvirt;
in {
options.faucet.libvirt = {
options.global.libvirt = {
enable = mkEnableOption "libvirt virtualisation daemon" // { default = true; };
};

View file

@ -2,9 +2,9 @@
, lib
, config
, ... }: with lib; let
cfg = config.faucet.util;
cfg = config.global.util;
in {
options.faucet.util = { };
options.global.util = { };
config = {
programs.zsh.enable = true;

View file

@ -2,6 +2,6 @@
, ... }: {
# this module passes openssh public keys to home-manager
users.homeModules = [ {
passthrough.publicKeys = config.faucet.auth.openssh.publicKeys;
passthrough.publicKeys = config.global.auth.openssh.publicKeys;
} ];
}

View file

@ -2,7 +2,7 @@
, lib
, config
, ... }: with lib; let
gui = with config.faucet.gui; ( enable && session );
gui = with config.global.gui; ( enable && session );
in {
users.home.persist.directories = mkIf gui [ ".config/google-chrome" ];
security.chromiumSuidSandbox.enable = mkIf gui true;

View file

@ -2,7 +2,7 @@
, lib
, config
, ... }: with lib; let
gui = with config.faucet.gui; ( enable && session );
gui = with config.global.gui; ( enable && session );
in {
config = {
users.homeModules = [

View file

@ -72,7 +72,7 @@ in {
description = with opts; mkIf (description != null) description;
extraGroups = mkIf opts.admin cfg.adminGroups;
openssh.authorizedKeys.keys = mkIf (opts.sshLogin && config.services.openssh.enable)
config.faucet.auth.openssh.publicKeys;
config.global.auth.openssh.publicKeys;
hashedPasswordFile = "/nix/persist/shadow/${name}";
shell = pkgs.zsh;
isNormalUser = mkIf (name != "root") true;

View file

@ -2,7 +2,7 @@
, lib
, config
, ... }: with lib; let
gui = with config.faucet.gui; ( enable && session );
gui = with config.global.gui; ( enable && session );
in mkIf gui {
services.xserver.displayManager.sessionPackages = [
(pkgs.writeTextFile {

View file

@ -2,7 +2,7 @@
, lib
, config
, ... }: with lib; let
gui = with config.faucet.gui; ( enable && session );
gui = with config.global.gui; ( enable && session );
in {
users.home.persist.directories = [ ] ++
optionals gui [

View file

@ -2,7 +2,7 @@
, lib
, config
, ... }: with lib; let
gui = with config.faucet.gui; ( enable && session );
gui = with config.global.gui; ( enable && session );
in mkIf gui {
programs.virt-manager.enable = true;
}

View file

@ -1,5 +1,5 @@
{
faucet = {
global = {
id = "5d3c16fe58444e12ad621600039f10af";
fs.esp.uuid = "32A5-6257";
fs.type = "xfs";

View file

@ -4,7 +4,7 @@
system = "x86_64-linux";
specialArgs = inputs // { inherit inputs; };
modules = [
../faucet
../global
../home/profile.nix
../home/user.nix
./constant.nix

View file

@ -1,7 +1,7 @@
{ lib
, modulesPath
, ... }: {
faucet = {
global = {
id = "bc8036643fc24f04ab150ff6a38dcce7";
auth.openssh.enable = true;
libvirt.enable = false;

View file

@ -1,7 +1,7 @@
{ pkgs
, lib
, ... }: {
faucet = {
global = {
id = "bc8036643fc24f04ab150ff6a38dcce7";
auth.openssh.enable = true;
fs.esp.uuid = "B20E-5994";

View file

@ -2,7 +2,7 @@
, lib
, modulesPath
, ... }: {
faucet = {
global = {
id = "bc8036643fc24f04ab150ff6a38dcce7";
auth.openssh.enable = true;
libvirt.enable = false;