diff options
author | Alex Auvolat <alex@adnab.me> | 2022-12-31 12:36:14 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-12-31 12:36:14 +0100 |
commit | a7a2fa2e6199018001c19949d97d1a74145359a1 (patch) | |
tree | 445fdd96fea7733b5ddd79a9f6968597cc5ee099 | |
parent | 470e0dba95b89c82010e674102fb78559bd04257 (diff) | |
download | user-config-a7a2fa2e6199018001c19949d97d1a74145359a1.tar.gz user-config-a7a2fa2e6199018001c19949d97d1a74145359a1.zip |
add programs
-rw-r--r-- | kusanagi/nixos/configuration.nix | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/kusanagi/nixos/configuration.nix b/kusanagi/nixos/configuration.nix index 6aac891..ac4e162 100644 --- a/kusanagi/nixos/configuration.nix +++ b/kusanagi/nixos/configuration.nix @@ -69,10 +69,7 @@ # Configure keymap in X11 services.xserver.layout = "fr"; - #services.xserver.xkbOptions = [ - # "eurosign:e" - # "caps:escape" - #]; + services.xserver.xkbOptions = "caps:escape"; # Enable CUPS to print documents. # services.printing.enable = true; @@ -115,6 +112,13 @@ git git-lfs htop + powertop + iotop + jnettop + nethogs + speedtest-cli + ncdu + dfc wget gcc gnumake @@ -134,11 +138,11 @@ # 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; - # }; + programs.mtr.enable = true; + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; # List services that you want to enable: @@ -154,7 +158,7 @@ # Copy the NixOS configuration file and link it from the resulting system # (/run/current-system/configuration.nix). This is useful in case you # accidentally delete configuration.nix. - # system.copySystemConfiguration = true; + system.copySystemConfiguration = true; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions |