diff options
| author | Fuwn <[email protected]> | 2024-10-01 05:26:10 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-01 05:26:10 -0700 |
| commit | c818010d59042384c069be0637dc64c479c4463f (patch) | |
| tree | 9f8ed4b423545805d7b00ed86304beccc6b8720d /modules/pc/default.nix | |
| parent | disks: reformat himeji (diff) | |
| download | nixos-config-c818010d59042384c069be0637dc64c479c4463f.tar.xz nixos-config-c818010d59042384c069be0637dc64c479c4463f.zip | |
modules: add default pc programs
Diffstat (limited to 'modules/pc/default.nix')
| -rw-r--r-- | modules/pc/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/pc/default.nix b/modules/pc/default.nix new file mode 100644 index 0000000..27ef69b --- /dev/null +++ b/modules/pc/default.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + vim + wget + git + ]; +} |