diff options
author | Rory& <root@rory.gay> | 2024-08-08 03:50:02 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-08-08 03:51:45 +0200 |
commit | ff65c8e951092d4d7caed1c4d02c9e141df7799b (patch) | |
tree | f8bd40da8fd80021a7452723a32cddaec8d45de6 /modules/users | |
parent | Server config cleanup (diff) | |
download | Rory-Open-Architecture-ff65c8e951092d4d7caed1c4d02c9e141df7799b.tar.xz |
Imports cleanup
Diffstat (limited to 'modules/users')
-rwxr-xr-x | modules/users/Alice.nix | 2 | ||||
-rwxr-xr-x | modules/users/Rory.client.nix | 8 | ||||
-rwxr-xr-x | modules/users/Rory.nix | 8 | ||||
-rwxr-xr-x | modules/users/chris.nix | 4 | ||||
-rwxr-xr-x | modules/users/db2k.nix | 2 | ||||
-rw-r--r-- | modules/users/groups/BugMine-contrib.nix | 2 | ||||
-rwxr-xr-x | modules/users/ks.nix | 8 |
7 files changed, 8 insertions, 26 deletions
diff --git a/modules/users/Alice.nix b/modules/users/Alice.nix index 465754a..b3a3cb8 100755 --- a/modules/users/Alice.nix +++ b/modules/users/Alice.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { imports = [ groups/BugMine-contrib.nix ]; diff --git a/modules/users/Rory.client.nix b/modules/users/Rory.client.nix index 29c7188..a9a3925 100755 --- a/modules/users/Rory.client.nix +++ b/modules/users/Rory.client.nix @@ -1,10 +1,4 @@ -{ - config, - lib, - pkgs, - home-manager, - ... -}: +{ lib, pkgs, ... }: { programs = { diff --git a/modules/users/Rory.nix b/modules/users/Rory.nix index 2556c1c..a1007fc 100755 --- a/modules/users/Rory.nix +++ b/modules/users/Rory.nix @@ -1,10 +1,4 @@ -{ - config, - lib, - pkgs, - home-manager, - ... -}: +{ lib, pkgs, ... }: { users.users.Rory = { diff --git a/modules/users/chris.nix b/modules/users/chris.nix index 3ab5d98..9df69a8 100755 --- a/modules/users/chris.nix +++ b/modules/users/chris.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { @@ -7,7 +7,7 @@ extraGroups = [ "wheel" ]; packages = with pkgs; [ nano - nodejs-slim + #nodejs-slim ]; #initialPassword = "password"; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMd9U0+wKjBG3Q9Qg249xJY+ybYeRV9/VMPjuwKvFBEI" ]; diff --git a/modules/users/db2k.nix b/modules/users/db2k.nix index 65457a4..8bc43e2 100755 --- a/modules/users/db2k.nix +++ b/modules/users/db2k.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { users.groups.db2k = { }; diff --git a/modules/users/groups/BugMine-contrib.nix b/modules/users/groups/BugMine-contrib.nix index 3b3ce07..d165962 100644 --- a/modules/users/groups/BugMine-contrib.nix +++ b/modules/users/groups/BugMine-contrib.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ ... }: { users.groups.BugMine-contrib = { }; diff --git a/modules/users/ks.nix b/modules/users/ks.nix index 1039fd1..0e2d36c 100755 --- a/modules/users/ks.nix +++ b/modules/users/ks.nix @@ -1,9 +1,4 @@ -{ - config, - pkgs, - home-manager, - ... -}: +{ ... }: { @@ -13,7 +8,6 @@ "wheel" "ocp" ]; - packages = with pkgs; [ ]; #initialPassword = "password"; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPUDh1WPUF6mPQ1E38ozUjY/DZhEbwZL37eZ51DgpuLo ks" ]; }; |