dotfiles/users/functionalhacker/home.nix

31 lines
438 B
Nix

{ pkgs, config, ... }:
{
imports = [
./programs/default.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
];
};
}