105 lines
2.5 KiB
Nix
105 lines
2.5 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
myData,
|
|
#home-manager,
|
|
...
|
|
}: {
|
|
options.mj.base.users = with lib.types; {
|
|
devEnvironment = lib.mkOption {
|
|
type = bool;
|
|
default = false;
|
|
};
|
|
|
|
passwd = lib.mkOption {
|
|
type = attrsOf (submodule (
|
|
{...}: {
|
|
options = {
|
|
passwordFile = lib.mkOption {
|
|
type = nullOr path;
|
|
default = null;
|
|
};
|
|
initialPassword = lib.mkOption {
|
|
type = nullOr str;
|
|
default = null;
|
|
};
|
|
|
|
extraGroups = lib.mkOption {
|
|
type = listOf str;
|
|
default = [];
|
|
};
|
|
};
|
|
}
|
|
));
|
|
};
|
|
};
|
|
|
|
config = {
|
|
users = {
|
|
mutableUsers = false;
|
|
|
|
users = let
|
|
passwd = config.mj.base.users.passwd;
|
|
in {
|
|
motiejus =
|
|
{
|
|
isNormalUser = true;
|
|
extraGroups = ["wheel"] ++ passwd.motiejus.extraGroups;
|
|
uid = myData.uidgid.motiejus;
|
|
openssh.authorizedKeys.keys = [myData.people_pubkeys.motiejus];
|
|
}
|
|
// lib.filterAttrs (
|
|
n: v:
|
|
(n == "passwordFile" || n == "initialPassword") && v != null
|
|
)
|
|
passwd.motiejus or {};
|
|
|
|
root = assert lib.assertMsg (passwd ? root) "root password needs to be defined";
|
|
lib.filterAttrs (n: v: v != null) passwd.root;
|
|
};
|
|
};
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.users.motiejus = {pkgs, ...}: {
|
|
home.stateVersion = "23.05";
|
|
home.packages = with pkgs; [go];
|
|
|
|
programs.direnv.enable = true;
|
|
|
|
programs.neovim = {
|
|
enable = true;
|
|
vimAlias = true;
|
|
vimdiffAlias = true;
|
|
defaultEditor = true;
|
|
plugins = lib.mkIf config.mj.base.users.devEnvironment [
|
|
pkgs.vimPlugins.fugitive
|
|
pkgs.vimPlugins.vim-go
|
|
pkgs.vimPlugins.zig-vim
|
|
];
|
|
extraConfig = builtins.readFile ./vimrc;
|
|
};
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
userEmail = "motiejus@jakstys.lt";
|
|
userName = "Motiejus Jakštys";
|
|
aliases.yolo = "commit --amend --no-edit -a";
|
|
extraConfig = {
|
|
rerere.enabled = true;
|
|
pull.ff = "only";
|
|
merge.conflictstyle = "diff3";
|
|
};
|
|
};
|
|
|
|
programs.bash = {
|
|
enable = true;
|
|
shellAliases = {
|
|
"l" = "echo -n ł | xclip -selection clipboard";
|
|
"gp" = "${pkgs.git} remote | ${pkgs.parallel} --verbose git push";
|
|
"elho" = "echo hello1";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|