summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2026-03-15 21:41:47 -0400
committertriethyl <triethylammonium@pm.me>2026-03-15 21:41:47 -0400
commit1c26c0d3265bc71103c19e7f163807406f6fb271 (patch)
treec8ec0b837dbb70bf76eebd24f4fbbc008403255d /nixos
parent3969c0706238898ccce79a993fc866f099a2cadd (diff)
changed to lucia
Diffstat (limited to 'nixos')
-rw-r--r--nixos/systems/prodesk-server/system.nix19
-rw-r--r--nixos/systems/thinkpad-laptop/system.nix12
2 files changed, 18 insertions, 13 deletions
diff --git a/nixos/systems/prodesk-server/system.nix b/nixos/systems/prodesk-server/system.nix
index 9acdef0..8cf10a6 100644
--- a/nixos/systems/prodesk-server/system.nix
+++ b/nixos/systems/prodesk-server/system.nix
@@ -17,22 +17,24 @@
isNormalUser = true;
description = "Server";
openssh.authorizedKeys.keys = [
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMcc7hXixElOgv87LlY1LgCQ9oOT6Lj66wjCh1uRqpQt culsans@nzxt-desktop"
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM/HLlWDshs3Fn4pbTrUeSdo/2/YWuBEMpQX15ZR0RNv lucas@thinkpad-laptop"
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMqAf3T3uOGEyaNkR/BZ31Qj+z7eJQTcKXn26kO3iQYJ iphone"
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMcc7hXixElOgv87LlY1LgCQ9oOT6Lj66wjCh1uRqpQt culsans@nzxt-desktop" # My Desktop
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM/HLlWDshs3Fn4pbTrUeSdo/2/YWuBEMpQX15ZR0RNv lucia@thinkpad-laptop" # My Laptop
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMqAf3T3uOGEyaNkR/BZ31Qj+z7eJQTcKXn26kO3iQYJ iphone-shortcut" # My iPhone Shortcuts
];
extraGroups = [
"networkmanager"
"wheel"
"audio"
"video"
+
+ "minecraft"
];
};
- users.users."alex" = {
+ users.users."guest" = {
isNormalUser = true;
- description = "Alex";
- password = "alexpassword";
+ description = "Guest";
+ # password = "";
packages = with pkgs; [
btop
zellij
@@ -41,7 +43,10 @@
fzf
];
openssh.authorizedKeys.keys = [
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILXgxptRpuZw7GAbaCh+tw4eeAd3/GEOnINEDYlhh9UU ragin@LAPTOP-BB0TF8J5"
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMcc7hXixElOgv87LlY1LgCQ9oOT6Lj66wjCh1uRqpQt culsans@nzxt-desktop" # My Desktop
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM/HLlWDshs3Fn4pbTrUeSdo/2/YWuBEMpQX15ZR0RNv lucia@thinkpad-laptop" # My Laptop
+
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILXgxptRpuZw7GAbaCh+tw4eeAd3/GEOnINEDYlhh9UU ragin@LAPTOP-BB0TF8J5" # Alex's Desktop
];
};
diff --git a/nixos/systems/thinkpad-laptop/system.nix b/nixos/systems/thinkpad-laptop/system.nix
index 23e1843..f06d428 100644
--- a/nixos/systems/thinkpad-laptop/system.nix
+++ b/nixos/systems/thinkpad-laptop/system.nix
@@ -8,12 +8,12 @@
stateVersion = "24.11";
};
- age.secrets.user-passwords_thinkpad-laptop_lucas.file = ../../../secrets/user-passwords/thinkpad-laptop/lucas.age;
+ age.secrets.user-passwords_thinkpad-laptop_lucia.file = ../../../secrets/user-passwords/thinkpad-laptop/lucia.age;
- users.users."lucas" = {
- hashedPasswordFile = config.age.secrets.user-passwords_thinkpad-laptop_lucas.path;
+ users.users."lucia" = {
+ hashedPasswordFile = config.age.secrets.user-passwords_thinkpad-laptop_lucia.path;
isNormalUser = true;
- description = "lucas";
+ description = "lucia";
extraGroups = [
"networkmanager"
"wheel"
@@ -37,7 +37,7 @@
utils = {
nh = {
enable = true;
- flake = "/home/lucas/Sync/setup";
+ flake = "/home/lucia/Sync/setup";
};
};
};
@@ -55,7 +55,7 @@
greetd.enable = true;
syncthing-client = {
enable = true;
- username = "lucas";
+ username = "lucia";
};
udisks2.enable = true;
};