1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2024-02-27 20:27:45 +01:00
parent 550ce08e41
commit d6157016cd
6 changed files with 31 additions and 13 deletions

5
common/atuin.nix Normal file
View file

@ -0,0 +1,5 @@
{
services.atuin = {
enable = true;
};
}

View file

@ -1,5 +1,6 @@
{
imports = [
./atuin.nix
./avahi.nix
./boot.nix
./cli.nix
@ -10,6 +11,7 @@
./opengl.nix
./readline.nix
./ssh.nix
./starship.nix
./sudo.nix
./swap.nix
./users.nix

9
common/starship.nix Normal file
View file

@ -0,0 +1,9 @@
{
programs.starship = {
enable = true;
interactiveOnly = true;
settings = {
format = "$all";
};
};
}