From 6c6533bdd390fe9d361790c73153bce7bff20b0d Mon Sep 17 00:00:00 2001 From: iFargle Date: Fri, 15 Dec 2023 10:41:35 +0900 Subject: [PATCH] Update README --- README.md | 43 +++++++------------------------------------ 1 file changed, 7 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index cccd5b66..0af9016c 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ Completed ToDo List [here](docs/complete.md) * Run `sops updatekeys secrets/file.yaml` and commit the change. # Troubleshooting -1. To troubleshoot issues, this command can come in handy: +1. To troubleshoot disko issues, this command can come in handy: ``` nix eval .#nixosConfigurations.[CONFIG_NAME].config.disko.devices._config ``` @@ -121,22 +121,16 @@ Completed ToDo List [here](docs/complete.md) │   │   │   ├── gnome │   │   │   │ ├── common │   │   │   │   └── themes -│   │   │   │ ├── default -│   │   │   │   └── gruvbox -│   │   │   └── hyprland -│   │   │   ├── common +│   │   │   ├── hyprland +│   │   │   │ ├── common +│   │   │   │   └── themes +│   │   │   └── xfce │   │   │   └── themes -│   │   │   ├── default -│   │   │   └── gruvbox │   │   └── software │   │   ├── cli │   │   │   └── themes -│   │   │   ├── default -│   │   │   └── gruvbox │   │   └── gui │   │   └── themes -│   │   ├── default -│   │   └── gruvbox │   ├── hosts │   └── users ├── keys @@ -148,7 +142,8 @@ Completed ToDo List [here](docs/complete.md) │   ├── common │   │   ├── desktops │   │   │   ├── gnome -│   │   │   └── hyprland +│   │   │   ├── hyprland +│   │   │   └── xfce │   │   ├── modules │   │   ├── services │   │   └── software @@ -158,28 +153,4 @@ Completed ToDo List [here](docs/complete.md) │   └── users ├── secrets └── wallpapers - ├── default - └── gruvbox ``` - -# Other -* Waybar inspirations - * https://github.com/Pipshag/dotfiles_nord - * https://github.com/hajosattila/dotfiles/ - * https://gist.github.com/toger5/3a509d9a9d7ebba1e02205b00449ccff - - -Example of passwordless SSH for deploy-rs: -``` -nixosConfigurations.target = { - # enable passwordless elevation - security.pam.enableSSHAgentAuth = true; -}; -deploy.nodes.target = { - # ssh as normal user but elevate to root after - sshUser = "me"; - user = "root"; - sshOpts = [ "-A" ]; -}; - -``` \ No newline at end of file