fixed openssh keys, trying out roles
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
role,
|
||||
...
|
||||
}: {
|
||||
programs.firefox = {
|
||||
@ -9,7 +10,7 @@
|
||||
};
|
||||
|
||||
programs.chromium = {
|
||||
enable = pkgs.stdenv.isLinux;
|
||||
enable = pkgs.stdenv.isLinux && role == "devel";
|
||||
package = pkgs.ungoogled-chromium.override {
|
||||
enableWideVine = true;
|
||||
commandLineArgs = [
|
||||
|
@ -102,7 +102,12 @@
|
||||
};
|
||||
|
||||
# Add username to groups "wheel" and "video" - more may be added here later
|
||||
users.users.${userName}.extraGroups = ["wheel" "podman" "network"];
|
||||
users.users.${userName} = {
|
||||
extraGroups = ["wheel" "podman" "network"];
|
||||
openssh.authorizedKeys.keys = ''
|
||||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFV9eSc9L+aJLoKoexq2f/jb5rpyZnhuGiyhS8YQAbaS wyatt@wyattjmiller.com
|
||||
'';
|
||||
};
|
||||
|
||||
# Add Home Assistant service
|
||||
services.home-assistant = {
|
||||
|
Reference in New Issue
Block a user