19 lines
520 B
Nix
19 lines
520 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.username = "sky";
|
|
home.homeDirectory = pkgs.lib.mkForce "/home/sky"; # use force here since vm trys to set it to /var/empty
|
|
|
|
home.packages = [ pkgs.neovim ];
|
|
programs.bash.enable = true;
|
|
home.file.".ssh/authorized_keys" = {
|
|
text =
|
|
''
|
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHTT5oIuXAkJvNzsHQ/RP2OOWb7R7zMjhU0ZmZCStlOX sky@sky-laptop
|
|
'';
|
|
};
|
|
|
|
# The state version is required and should stay at the version you
|
|
# originally installed.
|
|
home.stateVersion = "23.11";
|
|
}
|