Compare commits

...

2 Commits

Author SHA1 Message Date
27138332c4 add fzf to base-terminal 2024-10-27 10:12:59 -07:00
258b0081f0 fix torus modules in configuration.nix 2024-10-27 10:05:17 -07:00
3 changed files with 6 additions and 7 deletions

View File

@ -98,10 +98,9 @@
modules = { modules = {
programs = { programs = {
chezmoi.apply = true; chezmoi.apply = true;
borg.enable = true;
}; };
system = { services = {
backup.enable = true;
terminal.enable = true;
ssh.enable = true; ssh.enable = true;
}; };
}; };

View File

@ -13,7 +13,6 @@ in {
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
bc # Arbitrary-precision arithmetic language. bc # Arbitrary-precision arithmetic language.
fzf # Command-line fuzzy finder for Unix-like operating systems.
gamemode # Optimizes system performance for gaming by adjusting system settings. gamemode # Optimizes system performance for gaming by adjusting system settings.
vesktop # Voice, video, and text communication platform for communities and friends. vesktop # Voice, video, and text communication platform for communities and friends.
inkscape # Vector graphics editor for creating illustrations, icons, logos, diagrams, and more. inkscape # Vector graphics editor for creating illustrations, icons, logos, diagrams, and more.

View File

@ -29,9 +29,10 @@ in {
nodejs # JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs # JavaScript runtime built on Chrome's V8 JavaScript engine.
ripgrep # Line-oriented search tool that recursively searches directories for a regex pattern. ripgrep # Line-oriented search tool that recursively searches directories for a regex pattern.
cargo # Package manager and build system for Rust. cargo # Package manager and build system for Rust.
docker-compose docker-compose # Docker CLI plugin to define and run multi-container applications with Docker.
sesh sesh # Smart session manager for the terminal.
zoxide zoxide # Fast cd command that learns your habits.
fzf # Command-line fuzzy finder for Unix-like operating systems.
]; ];
}; };
} }