mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
24 lines
467 B
Nix
24 lines
467 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;
|
|
|
|
groups = [ "wheel" "networkmanager" "home-manager" "input" ];
|
|
bookmarks = import ./bookmarks;
|
|
};
|
|
};
|
|
};
|
|
}
|