dotfiles/config/nix/os/geoffrey.nix

23 lines
482 B
Nix
Raw Normal View History

2023-10-28 22:09:36 +02:00
{ pkgs, ... }:
{
imports = [
<home-manager/nixos>
];
users.users.geoffrey = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
initialPassword = "cartable"; # DEBUG
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPE41gxrO8oZ5n3saapSwZDViOQphm6RzqgsBUyA88pU geoffrey@frogeye.fr"
];
};
home-manager.users.geoffrey = { pkgs, ... }: {
imports = [
../hm/loader.nix
];
};
}