add file manage rand todo steps

This commit is contained in:
= 2024-03-31 17:54:21 -05:00
parent 0360d68f88
commit 3f7c2eccc2
2 changed files with 11 additions and 3 deletions

View file

@ -1,8 +1,11 @@
# First Install # First Install
- Before anything else, ensure the generated hardware-configuration is copied over into the desired hostname target in systems directory. - First follow nixos installation guide: https://nixos.wiki/wiki/NixOS_Installation_Guide
- //todo add experimental whatevers `nixos-rebuild switch --flake /etc/nixos#gpdPocket3` - Checkout this repo into /etc/nixos
- copy oover this systems ssh public key pairs into the ./secrets/secrets.nix file - push those up, using another computer re-key all the secrets, push up again - Before anything else, ensure the generated hardware-configuration is copied over into the desired HOSTNAME target in systems directory.
- switch into flake mode `nixos-rebuild switch --flake /etc/nixos#HOSTNAME`
- copy over this systems ssh public key pairs into the ./secrets/secrets.nix file - push those up, using another computer re-key all the secrets, push up again
- pull new secrets down with new added keys - pull new secrets down with new added keys
# Later updates # Later updates

View file

@ -0,0 +1,5 @@
{ settings, pkgs, ... }:
{
home.packages = [ pkgs.gnome.nautilus ];
}