dotfiles/os/geoffrey.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

{ pkgs, lib, config, ... }:
2023-10-28 22:09:36 +02:00
{
users.users.root.initialHashedPassword = "$y$j9T$e64bjL7iyVlniEKwKbM9g0$cCn74za0r6L9QMO20Fdxz3/SX0yvhz3Xd6.2BhtbRL1"; # Not a real password
2023-10-28 22:09:36 +02:00
users.users.geoffrey = {
isNormalUser = true;
2023-12-09 00:08:01 +01:00
extraGroups = [ "adbusers" "wheel" ];
2023-10-28 23:03:27 +02:00
shell = pkgs.zsh;
2023-10-28 22:09:36 +02:00
2023-11-28 00:34:30 +01:00
initialHashedPassword = "$y$j9T$e64bjL7iyVlniEKwKbM9g0$cCn74za0r6L9QMO20Fdxz3/SX0yvhz3Xd6.2BhtbRL1"; # Not a real password
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, ... }: {
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
specialisation = {
dark.configuration.frogeye.polarity = "dark";
light.configuration.frogeye.polarity = "light";
};
2024-01-15 19:26:44 +01:00
# Fix https://nix-community.github.io/home-manager/index.html#_why_do_i_get_an_error_message_about_literal_ca_desrt_dconf_literal_or_literal_dconf_service_literal
programs.dconf.enable = true;
2023-12-02 22:47:30 +01:00
# Because everything is encrypted and I'm the only user, this is fine.
2023-10-29 00:49:22 +02:00
services.xserver.displayManager.autoLogin.user = "geoffrey";
2023-10-28 22:09:36 +02:00
}