12 lines
202 B
Nix
12 lines
202 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
./mise.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
# some base packages for development, without which nothing would really work
|
|
gcc
|
|
gnumake
|
|
unzip
|
|
];
|
|
}
|