diff options
author | Rory& <root@rory.gay> | 2024-06-05 17:49:40 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-06-05 17:49:40 +0200 |
commit | 8e374681ec53a97f5c736caaab8991ff2229f98e (patch) | |
tree | 758ea057105222ef2fae56e0fb19f990811e1e6c /modules | |
parent | Update newprod to run latest spacebar server master (diff) | |
download | Spacebar-Open-Infrastructure-8e374681ec53a97f5c736caaab8991ff2229f98e.tar.xz |
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/base.nix | 3 | ||||
-rwxr-xr-x | modules/users/Rory.nix | 29 |
2 files changed, 1 insertions, 31 deletions
diff --git a/modules/base.nix b/modules/base.nix index ee27780..408b4cf 100755 --- a/modules/base.nix +++ b/modules/base.nix @@ -6,7 +6,6 @@ ./monitoring.nix ./infra-logs.nix ./auto-redeploy.nix - ./users/Rory.nix ./users/chris.nix ./users/maddy.nix ./vim.nix @@ -133,4 +132,4 @@ nixpkgs.config.allowUnfree = true; sound.enable = false; system.stateVersion = "22.11"; # DO NOT EDIT! -} +} \ No newline at end of file diff --git a/modules/users/Rory.nix b/modules/users/Rory.nix deleted file mode 100755 index fe51acc..0000000 --- a/modules/users/Rory.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ config, pkgs, home-manager, ... }: -{ - users.users.Rory = { - isNormalUser = true; - extraGroups = [ "wheel" ]; - packages = with pkgs; [ - ]; - initialPassword = "password"; - openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILF2IuNu//0DP/wKMuDvBgVT3YBS2uULsipbdrhJCTM7 Rory-desktop" - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN/kNkY/E5b6rvCQLMaSbpLQ/xoyywIwVVu9uo2j/B6p Rory@RoryNix" - ]; - }; - - home-manager.users.Rory = { - programs.git = { - enable = true; - userName = "TheArcaneBrony"; - userEmail = "root@thearcanebrony.net"; - extraConfig = { - safe = { - directory = "/"; - }; - }; - }; - home.stateVersion = "22.11"; - }; -} - |