mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
- Add config.machines.keys for machine-specific keys (private keys live on that machine) - Move desktop SSH key to machines.keys.desktop.ssh - Fix extractName to preserve "yubikey" (only strip .key/.pub extensions) - Rename key files for clarity (android -> graphone, primary -> yubikey) - Add age yubikey key for encrypted backups - Add README files to document key purposes - Update all machine configs to import system config
24 lines
484 B
Nix
24 lines
484 B
Nix
{ lib, pkgs, config, ... }:
|
|
|
|
with lib;
|
|
let
|
|
modules = config.modules.user;
|
|
|
|
in
|
|
{
|
|
options = {
|
|
user = mkOption {
|
|
description = "User Configurations";
|
|
type = types.attrs;
|
|
default = with pkgs; rec {
|
|
name = "bryan";
|
|
email = "bryan@ramos.codes";
|
|
shell = bash;
|
|
keys = import ./keys { inherit lib; };
|
|
|
|
groups = [ "wheel" "networkmanager" "home-manager" "input" ];
|
|
bookmarks = import ./bookmarks;
|
|
};
|
|
};
|
|
};
|
|
}
|