feat: change username to etwas

This commit is contained in:
etwas 2025-10-14 20:58:26 +02:00
parent 43f471a017
commit 913e75cc33
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0
6 changed files with 16 additions and 10 deletions

View file

@ -43,7 +43,7 @@
...
}@inputs:
{
nixosConfigurations.rhea-laptop = nixpkgs.lib.nixosSystem {
nixosConfigurations.etwas-laptop = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
inherit spicetify-nix;

View file

@ -13,6 +13,12 @@
inputs.spicetify-nix.nixosModules.default
];
# Configure them here, because here I still have the system config.age. ...
home-manager.users.etwas.services.restic.backups.localbackup = {
passwordFile = config.age.secrets.restic-password.path;
environmentFile = config.age.secrets.restic-s3-key.path;
};
home-manager = {
useUserPackages = true;
# useGlobalPkgs = true;
@ -23,12 +29,12 @@
inherit agenix-rekey;
};
users.rhea = {
users.etwas = {
# The home.stateVersion option does not have a default and must be set
home = {
stateVersion = "24.05";
username = "rhea";
homeDirectory = "/home/rhea";
username = "etwas";
homeDirectory = "/home/etwas";
};
catppuccin = {
@ -52,7 +58,7 @@
};
};
users.users.rhea = {
users.users.etwas = {
isNormalUser = true;
description = "etwas";
extraGroups = [
@ -66,5 +72,5 @@
shell = pkgs.zsh;
};
nix.settings.allowed-users = [ "rhea" ];
nix.settings.allowed-users = [ "etwas" ];
}

View file

@ -174,7 +174,7 @@
"$mod SHIFT, down, movewindow, d"
# make Screenshot with Mod + Shift + S
"$mod SHIFT, S, exec, ${hyprshot} -m region -o /home/rhea/Pictures/screenshots"
"$mod SHIFT, S, exec, ${hyprshot} -m region -o /home/etwas/Pictures/screenshots"
"$mod, 0, workspace, 10"
"$mod SHIFT, 0, movetoworkspacesilent, 10"

View file

@ -49,7 +49,7 @@
];
nix.extraOptions = ''
trusted-users = root rhea
trusted-users = root etwas
'';
programs.dconf.enable = true;

View file

@ -1,7 +1,7 @@
{ lib, pkgs, ... }:
{
networking = {
hostName = "rhea-laptop";
hostName = "etwas-laptop";
# Enable networking
networkmanager = {

View file

@ -13,7 +13,7 @@
settings = {
default_session = {
command = "${pkgs.tuigreet}/bin/tuigreet -t -g \"Hello there (^^)/\" --cmd 'Hyprland'";
user = "rhea";
user = "etwas";
};
};
};