11 lines
129 B
Nix
11 lines
129 B
Nix
{ pkgs, configs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs;
|
|
[
|
|
atuin
|
|
];
|
|
services.atuin.enable = true;
|
|
|
|
|
|
}
|