nixos-config/users/simon/default.nix

30 lines
593 B
Nix
Raw Permalink Normal View History

{ config, options, pkgs, ... }:
2020-08-22 17:44:39 +02:00
{
users.users.simon = {
isNormalUser = true;
extraGroups = [
"adbusers"
"dialout"
"keys"
2020-09-12 20:54:10 +02:00
"libvirtd"
2020-08-22 17:44:39 +02:00
"lp"
"networkmanager"
2020-10-17 20:12:13 +02:00
"video"
2020-08-22 17:44:39 +02:00
"wheel"
];
2020-12-05 16:42:49 +01:00
openssh.authorizedKeys.keys = config.sbruder.pubkeys.trustedKeys;
2020-12-06 14:05:47 +01:00
initialPassword = "foobar"; # for vm
2020-08-22 17:44:39 +02:00
};
home-manager.useUserPackages = true;
home-manager.useGlobalPkgs = true;
2020-12-05 15:01:40 +01:00
home-manager.users.simon = { lib, pkgs, ... }: {
2020-12-05 19:19:45 +01:00
imports = [ ./modules ];
config = {
home.stateVersion = config.system.stateVersion;
};
2020-08-22 17:44:39 +02:00
};
}