btop should be for all users

This commit is contained in:
baduhai 2023-01-27 13:17:58 -03:00
parent b07deef3e3
commit ada586166c
2 changed files with 9 additions and 9 deletions

View file

@ -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";

View file

@ -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;
};
};
};
}