summaryrefslogtreecommitdiff
path: root/modules/pc/default.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-01 05:26:10 -0700
committerFuwn <[email protected]>2024-10-01 05:26:10 -0700
commitc818010d59042384c069be0637dc64c479c4463f (patch)
tree9f8ed4b423545805d7b00ed86304beccc6b8720d /modules/pc/default.nix
parentdisks: reformat himeji (diff)
downloadnixos-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.nix8
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
+ ];
+}