diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2024-10-23 08:50:57 +0200 |
---|---|---|
committer | Jasper Ras <jaspert.ras@gmail.com> | 2024-10-23 08:50:57 +0200 |
commit | d9511a642b80c16db6508bc1f4b51f229c257b3a (patch) | |
tree | a9cdf25f7e0f74abc484cb45fce25ea86bf0853a /packages.nix |
Initial commit
Diffstat (limited to 'packages.nix')
-rw-r--r-- | packages.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages.nix b/packages.nix new file mode 100644 index 0000000..a21aa7a --- /dev/null +++ b/packages.nix @@ -0,0 +1,16 @@ +# Edit this configuration file to define what should be installed on +# your system. Help is available in the configuration.nix(5) man page +# and in the NixOS manual (accessible by running ‘nixos-help’). + +{ config, pkgs, ... }: + +{ + # List packages installed in system profile. To search, run: + # $ nix search wget + environment.systemPackages = with pkgs; [ + helix + alacritty + firefox + git + ]; +} |