- Move user programs out of systems section and int user section - Install user packages with home manager rather than system wide
15 lines
166 B
Nix
15 lines
166 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
curl
|
|
zsh
|
|
git
|
|
rsync
|
|
cryptsetup
|
|
home-manager
|
|
];
|
|
}
|