dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

default.nix (402B)


      1 { pkgs, ... }:
      2 {
      3   programs.htop = {
      4     enable = true;
      5 
      6     settings = {
      7       hide_kernel_threads = true;
      8       hide_userland_threads = true;
      9       shadow_other_users = true;
     10       highlight_base_name = true;
     11       update_interval = 1;
     12       show_cpu_frequency = true;
     13       show_cpu_temperature = true;
     14     };
     15 
     16     package = pkgs.htop.overrideAttrs {
     17       patches = [ ./keys.patch ];
     18     };
     19   };
     20 }