This commit is contained in:
Lilith 2025-10-17 12:51:21 +02:00
parent 12c038249c
commit 7fb3e81be7
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
5 changed files with 33 additions and 5 deletions

8
system/core/fish.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
programs.fish = {
enable = true;
generateCompletions = true;
};
users.defaultUserShell = pkgs.fish;
}