mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
users: Added arc
This commit is contained in:
parent
7d701506ce
commit
3f04a6b4be
3 changed files with 18 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./nixos ];
|
||||
imports = [ ./nixos ../../users ];
|
||||
|
||||
config = { home-manager.users.kat = { imports = [ ./home.nix ]; }; };
|
||||
}
|
||||
|
|
|
|||
12
users/arc/default.nix
Normal file
12
users/arc/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.arc = {
|
||||
uid = 1001;
|
||||
isNormalUser = true;
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ8Z6briIboxIdedPGObEWB6QEQkvxKvnMW/UVU9t/ac mew-pgp"
|
||||
];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
}
|
||||
5
users/default.nix
Normal file
5
users/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [ ./arc ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue