nixos-config/users/sky.nix

19 lines
520 B
Nix
Raw Normal View History

2024-03-05 09:16:28 +00:00
{ 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";
}