Added Users

This commit is contained in:
jopejoe1 2024-04-26 11:35:22 +02:00
parent 5a44f3c499
commit 53d5ac23a0
5 changed files with 137 additions and 119 deletions

18
users/fp/default.nix Normal file
View file

@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
users.users.fp = {
description = "felix";
openssh.authorizedKeys.keys = [
"ssh.ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMBFp5TEsP0rdhkDpMfuMkCuLrDPoXBVu8EpRyLwuAMs fp@IAP-597"
"ssh-ed25519 AAAAC3NzaC11ZDI1NTE5AAAAIMBFp5TEsPOrdhkDpMfuMkCuLrDP0XBVu8EpRyLWUAMs Fp@IAP-597"
];
isNormalUser = true;
shell = pkgs.fish;
};
home-manager.users.fp = import ../. {
inherit pkgs config;
user = config.users.users.fp;
home = config.home-manager.users.fp;
};
}