NixOS-Configuration/common/users/cameron/default.nix

39 lines
764 B
Nix

{ config, lib, pkgs, ... }:
with lib; let
cfg = config.user.cameron;
in {
options.user.cameron = {
enable = mkEnableOption "user cameron";
}
config = mkIf cfg.enable {
users = {
groups.cameron.gid = 1000;
users.cameron = {
description = "Cameron";
isNormalUser = true;
uid = 1000;
group = "cameron";
extraGroups = [ "networkmanager" "wheel" ];
home = "/home/cameron-nix";
createHome = true;
shell = pkgs.zsh;
packages = (with pkgs; [
direnv
nix-direnv
bibata-cursors
bibata-cursors-translucent
]) ++ (with pkgs.gnomeExtensions; [
gsconnect
dock-from-dash
]);
};
};
};
}