2023-11-21 21:01:56 +01:00
|
|
|
|
{ pkgs, config, ... }:
|
2023-10-28 22:09:36 +02:00
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
<home-manager/nixos>
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
users.users.geoffrey = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
2023-10-28 23:03:27 +02:00
|
|
|
|
shell = pkgs.zsh;
|
2023-10-28 22:09:36 +02:00
|
|
|
|
|
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPE41gxrO8oZ5n3saapSwZDViOQphm6RzqgsBUyA88pU geoffrey@frogeye.fr"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-28 23:03:27 +02:00
|
|
|
|
# Won't allow to set the shell otherwise,
|
|
|
|
|
# even though home-manager sets it
|
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
|
users.geoffrey = { pkgs, ... }: {
|
|
|
|
|
imports = [
|
|
|
|
|
../hm/loader.nix
|
|
|
|
|
];
|
2023-11-21 21:01:56 +01:00
|
|
|
|
frogeye = config.frogeye;
|
2023-10-28 23:03:27 +02:00
|
|
|
|
};
|
|
|
|
|
# Makes VMs able to re-run
|
|
|
|
|
useUserPackages = true;
|
|
|
|
|
# Adds consistency
|
|
|
|
|
useGlobalPkgs = true;
|
2023-10-28 22:09:36 +02:00
|
|
|
|
};
|
2023-10-29 00:49:22 +02:00
|
|
|
|
|
|
|
|
|
# FIXME Make sure I'm the only user & everything is encrypted
|
|
|
|
|
services.xserver.displayManager.autoLogin.user = "geoffrey";
|
2023-10-28 22:09:36 +02:00
|
|
|
|
}
|