Compare commits

...

3 Commits

2 changed files with 6 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ in {
users.extraUsers.root = { users.extraUsers.root = {
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
mbpJPierre03
radxJPierre03 radxJPierre03
radxRoot radxRoot
phenomTaeradan phenomTaeradan

View File

@@ -49,6 +49,7 @@ in
]; ];
shellAliases = { shellAliases = {
byobu = "byobu-tmux"; byobu = "byobu-tmux";
jacques-a-dit = "sudo";
tree = "tree -C"; tree = "tree -C";
tree1 = "tree -d -L 1"; tree1 = "tree -d -L 1";
tree2 = "tree -d -L 2"; tree2 = "tree -d -L 2";
@@ -58,6 +59,10 @@ in
}; };
etc.gitconfig.text = builtins.readFile ./gitconfig; etc.gitconfig.text = builtins.readFile ./gitconfig;
}; };
# programmes qui n'ont pas besoin de sudo pour fonctionner
security.setuidPrograms = [
"mtr"
];
programs.bash = { programs.bash = {
enableCompletion = true; enableCompletion = true;
promptInit = builtins.readFile ./bash-prompt.sh; promptInit = builtins.readFile ./bash-prompt.sh;