grimm-nixos-laptop/modules/users.nix

47 lines
944 B
Nix
Raw Normal View History

2023-11-29 22:56:30 +01:00
{pkgs, ...}:
2023-11-28 23:24:43 +01:00
{
users.users.grimmauld = {
isNormalUser = true;
shell = pkgs.xonsh;
2023-11-28 23:24:43 +01:00
description = "grimmauld";
extraGroups = [ "networkmanager" "wheel" "input" "video" "lp" "scanner" "libvirtd" ];
2023-11-28 23:24:43 +01:00
packages = with pkgs; [
webcord
heroic
plasma-browser-integration
pdfarranger
kwrited
gparted
element-desktop
2023-11-28 23:24:43 +01:00
nmap
ghidra
firefox-esr
kcalc
rmview
krita
2023-11-28 23:24:43 +01:00
spicetify-cli
prusa-slicer
freecad
openscad
blender
2023-11-28 23:24:43 +01:00
];
};
programs.neovim = {
enable = true;
viAlias = true;
configure = {
customRC = ''
set number
set hidden
set nocompatible
'';
packages.myVimPackage = with pkgs.vimPlugins; {
# loaded on launch
start = [ vim-nix vim-scala fugitive ];
# manually loadable by calling `:packadd $plugin-name`
opt = [ ];
};
};
};
2023-11-28 23:24:43 +01:00
}