feat: change username to etwas
This commit is contained in:
parent
43f471a017
commit
913e75cc33
6 changed files with 16 additions and 10 deletions
|
|
@ -43,7 +43,7 @@
|
||||||
...
|
...
|
||||||
}@inputs:
|
}@inputs:
|
||||||
{
|
{
|
||||||
nixosConfigurations.rhea-laptop = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.etwas-laptop = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
inherit spicetify-nix;
|
inherit spicetify-nix;
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,12 @@
|
||||||
inputs.spicetify-nix.nixosModules.default
|
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 = {
|
home-manager = {
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
# useGlobalPkgs = true;
|
# useGlobalPkgs = true;
|
||||||
|
|
@ -23,12 +29,12 @@
|
||||||
inherit agenix-rekey;
|
inherit agenix-rekey;
|
||||||
};
|
};
|
||||||
|
|
||||||
users.rhea = {
|
users.etwas = {
|
||||||
# The home.stateVersion option does not have a default and must be set
|
# The home.stateVersion option does not have a default and must be set
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "24.05";
|
stateVersion = "24.05";
|
||||||
username = "rhea";
|
username = "etwas";
|
||||||
homeDirectory = "/home/rhea";
|
homeDirectory = "/home/etwas";
|
||||||
};
|
};
|
||||||
|
|
||||||
catppuccin = {
|
catppuccin = {
|
||||||
|
|
@ -52,7 +58,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
users.users.rhea = {
|
users.users.etwas = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "etwas";
|
description = "etwas";
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
|
|
@ -66,5 +72,5 @@
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
nix.settings.allowed-users = [ "rhea" ];
|
nix.settings.allowed-users = [ "etwas" ];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -174,7 +174,7 @@
|
||||||
"$mod SHIFT, down, movewindow, d"
|
"$mod SHIFT, down, movewindow, d"
|
||||||
|
|
||||||
# make Screenshot with Mod + Shift + S
|
# 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, 0, workspace, 10"
|
||||||
"$mod SHIFT, 0, movetoworkspacesilent, 10"
|
"$mod SHIFT, 0, movetoworkspacesilent, 10"
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
nix.extraOptions = ''
|
nix.extraOptions = ''
|
||||||
trusted-users = root rhea
|
trusted-users = root etwas
|
||||||
'';
|
'';
|
||||||
|
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{ lib, pkgs, ... }:
|
{ lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "rhea-laptop";
|
hostName = "etwas-laptop";
|
||||||
|
|
||||||
# Enable networking
|
# Enable networking
|
||||||
networkmanager = {
|
networkmanager = {
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
settings = {
|
settings = {
|
||||||
default_session = {
|
default_session = {
|
||||||
command = "${pkgs.tuigreet}/bin/tuigreet -t -g \"Hello there (^^)/\" --cmd 'Hyprland'";
|
command = "${pkgs.tuigreet}/bin/tuigreet -t -g \"Hello there (^^)/\" --cmd 'Hyprland'";
|
||||||
user = "rhea";
|
user = "etwas";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue