12 lines
179 B
Nix
12 lines
179 B
Nix
|
{pkgs, ...}: {
|
||
|
imports = [../resources/common];
|
||
|
home.packages = with pkgs; [
|
||
|
### Outdated macOS components
|
||
|
coreutils
|
||
|
vim
|
||
|
gnugrep
|
||
|
openssh
|
||
|
screen
|
||
|
];
|
||
|
}
|