Skip to content

Commit

Permalink
chore: added hsvsphere
Browse files Browse the repository at this point in the history
  • Loading branch information
orzklv committed Nov 13, 2024
1 parent 2827841 commit a4101d1
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/nixos/users/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{
# List your users here
kei = import ./kei.nix;
hsv = import ./hsv.nix;
sakhib = import ./sakhib.nix;
sardor = import ./sardor.nix;
shakhzod = import ./shakhzod.nix;
Expand Down
36 changes: 36 additions & 0 deletions modules/nixos/users/hsv.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{ pkgs
, inputs
, outputs
, lib
, config
, packages
, ...
}:
let
username = "hsv";
in
{
config = {
users.users = {
"${username}" = {
isNormalUser = true;
description = "HSVSphere";
initialPassword = "F1st1ng15300Buck$!?";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBVkWUQ6Z4OK539tore/R5wnueNPPaX532RUAld8UOCo"
];
extraGroups = [ "docker" "admins" ];
};
};

home-manager = {
extraSpecialArgs = { inherit inputs outputs; };
users = {
# Import your home-manager configuration
"${username}" = import ../../../home.nix {
inherit inputs outputs username lib;
};
};
};
};
}
1 change: 1 addition & 0 deletions nixos/kolyma-4/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

# User configs
outputs.nixosModules.users.kei
outputs.nixosModules.users.hsv
outputs.nixosModules.users.sakhib
outputs.nixosModules.users.sardor
outputs.nixosModules.users.manuchehr
Expand Down

0 comments on commit a4101d1

Please sign in to comment.