From ada586166cecd3efa255408b87ad035417c7ad1f Mon Sep 17 00:00:00 2001 From: baduhai Date: Fri, 27 Jan 2023 13:17:58 -0300 Subject: [PATCH] btop should be for all users --- users/common/programs.nix | 9 +++++++++ users/desktops/common/programs.nix | 9 --------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/users/common/programs.nix b/users/common/programs.nix index 3066a67..fbc4f91 100644 --- a/users/common/programs.nix +++ b/users/common/programs.nix @@ -28,6 +28,15 @@ enableFishIntegration = true; settings = builtins.fromJSON (builtins.unsafeDiscardStringContext (builtins.readFile "${inputs.dotfiles}/omp.json")); }; + btop = { + enable = true; + settings = { + color_theme = "catppuccin_mocha.theme"; + theme_background = false; + proc_sorting = "cpu direct"; + update_ms = 500; + }; + }; fish = { enable = true; interactiveShellInit = "any-nix-shell fish --info-right | source"; diff --git a/users/desktops/common/programs.nix b/users/desktops/common/programs.nix index 394726a..1304011 100644 --- a/users/desktops/common/programs.nix +++ b/users/desktops/common/programs.nix @@ -34,14 +34,5 @@ in upgrade-boot = "rm ~/.gtkrc-2.0; nix flake lock --update-input nixpkgs --commit-lock-file /home/user/Projects/personal/nix-config; sudo nixos-rebuild boot --upgrade --flake '/home/user/Projects/personal/nix-config#'"; }; }; - btop = { - enable = true; - settings = { - color_theme = "gruvbox_dark.theme"; - theme_background = false; - proc_sorting = "cpu direct"; - update_ms = 500; - }; - }; }; }