mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 20:20:43 +02:00
30 lines
327 B
Nix
30 lines
327 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
libnotify
|
|
cliphist
|
|
gh
|
|
trash-cli
|
|
pandoc
|
|
fzf
|
|
eza
|
|
fastfetch
|
|
fd
|
|
duf
|
|
gdu
|
|
jq
|
|
tealdeer
|
|
grim
|
|
slurp
|
|
bc
|
|
nh
|
|
runc
|
|
];
|
|
|
|
xdg.configFile."containers/containers.conf".text = ''
|
|
[engine]
|
|
runtime = "runc"
|
|
'';
|
|
}
|