niksos/homes/chmura/default.nix

38 lines
633 B
Nix

{
config,
inputs,
lib,
pkgs,
...
}: {
imports = [
];
config = {
programs = {
home-manager.enable = true;
};
home = {
username = "chmura";
packages = with pkgs; [
git
exa
ripgrep
btop
firejail
zellij
cargo
rustc
nodejs
unzip
cmake
gcc
trash-cli
];
stateVersion = lib.mkDefault "23.11";
};
};
}