Simon Bruder
aaaf7d3ccc
This removes makemkv-specific configuration from sayuri and adds it to fuuko. It also changes the makemkv sandbox to now hardcode fuuko’s configuration.
33 lines
642 B
Nix
33 lines
642 B
Nix
{ config, options, pkgs, ... }:
|
|
{
|
|
users.users.simon = {
|
|
isNormalUser = true;
|
|
extraGroups = [
|
|
"adbusers"
|
|
"cdrom"
|
|
"corectrl"
|
|
"dialout"
|
|
"keys"
|
|
"libvirtd"
|
|
"lp"
|
|
"networkmanager"
|
|
"video"
|
|
"wheel"
|
|
"wireshark"
|
|
];
|
|
openssh.authorizedKeys.keys = config.sbruder.pubkeys.trustedKeys;
|
|
initialPassword = "foobar"; # for vm
|
|
};
|
|
|
|
home-manager.useUserPackages = true;
|
|
home-manager.useGlobalPkgs = true;
|
|
|
|
home-manager.users.simon = { lib, pkgs, ... }: {
|
|
imports = [ ./modules ];
|
|
|
|
config = {
|
|
home.stateVersion = config.system.stateVersion;
|
|
};
|
|
};
|
|
}
|