niksos/homes/chmura/default.nix
2023-07-13 15:11:17 +02:00

39 lines
677 B
Nix

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