dotfiles/users/functionalhacker/home.nix
2024-10-05 17:26:54 +03:00

29 lines
430 B
Nix

{ pkgs, ... }:
{
imports = [ ./programs/configuration.nix ];
home = {
username = "functionalhacker";
homeDirectory = "/home/functionalhacker";
stateVersion = "24.05";
packages = with pkgs; [
cargo
fd
file
gcc
grc
imagemagick
neovide
nerdfonts
nodejs
trash-cli
tree-sitter
usbutils
wl-clipboard
yarn
zip
];
};
}