2021-08-09 08:19:21 -04:00
|
|
|
|
# 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’).
|
|
|
|
|
|
2022-04-28 21:56:21 -04:00
|
|
|
|
{ config, pkgs, user, font, ... }:
|
2021-08-09 08:19:21 -04:00
|
|
|
|
|
|
|
|
|
{
|
2022-01-22 19:16:37 -05:00
|
|
|
|
nix.extraOptions = "experimental-features = nix-command flakes";
|
2022-01-13 08:51:13 -05:00
|
|
|
|
|
2021-08-09 08:19:21 -04:00
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
|
# $ nix search wget
|
2022-04-28 22:25:05 -04:00
|
|
|
|
environment.systemPackages = with pkgs; [ git vim wget curl ];
|
2022-04-23 17:15:14 +00:00
|
|
|
|
|
2021-08-09 08:19:21 -04:00
|
|
|
|
# Some programs need SUID wrappers, can be configured further or are
|
|
|
|
|
# started in user sessions.
|
|
|
|
|
# programs.mtr.enable = true;
|
|
|
|
|
# programs.gnupg.agent = {
|
|
|
|
|
# enable = true;
|
|
|
|
|
# enableSSHSupport = true;
|
|
|
|
|
# };
|
|
|
|
|
}
|