fixed some things
This commit is contained in:
parent
386198098f
commit
a010e5b42e
3 changed files with 13 additions and 1 deletions
|
@ -20,7 +20,8 @@ with lib;
|
|||
|
||||
config = mkIf config.components.terminal.enable {
|
||||
environment.systemPackages = [
|
||||
pkgs.ranger
|
||||
pkgs.ranger # datei browser
|
||||
pkgs.retry # retry command till success
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
8
nixos/machines/chungus/atuin.nix
Normal file
8
nixos/machines/chungus/atuin.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ config, ... }: {
|
||||
services.atuin = {
|
||||
enable = true;
|
||||
host = config.tinc.private.ipv4;
|
||||
maxHistoryLength = 999999;
|
||||
openRegistration = true;
|
||||
};
|
||||
}
|
|
@ -8,6 +8,9 @@
|
|||
custom.samba-share.folders = {
|
||||
music = "/media/music";
|
||||
audio-books = "/media/audio-books";
|
||||
movies = "/media/movies";
|
||||
series = "/media/series";
|
||||
samples = "/media/samples";
|
||||
};
|
||||
custom.samba-share.private = {
|
||||
media = {
|
||||
|
|
Loading…
Reference in a new issue