28 lines
381 B
Nix
28 lines
381 B
Nix
{...}: {
|
|
flake.nixosModules.utilities = { pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
rustc cargo
|
|
|
|
abduco dvtm
|
|
git
|
|
htop
|
|
lsof
|
|
tree
|
|
rar unzip zip
|
|
|
|
alejandra nixd
|
|
];
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
config = {
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
};
|
|
|
|
lfs.enable = true;
|
|
};
|
|
};
|
|
}
|