changed user name

This commit is contained in:
biscuit
2025-05-06 11:23:09 -05:00
parent 0c8d4ae178
commit e209ddd352
3 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -38,7 +38,7 @@
home-manager.nixosModules.home-manager { home-manager.nixosModules.home-manager {
home-manager = { home-manager = {
useGlobalPkgs = true; useGlobalPkgs = true;
users.lsoriano = import ./home-manager/home.nix; users.biscuit = import ./home-manager/home.nix;
}; };
} }
]; ];
+2 -2
View File
@@ -1,8 +1,8 @@
{ inputs, config, pkgs, ... }: { inputs, config, pkgs, ... }:
{ {
home.username = "lsoriano"; home.username = "biscuit";
home.homeDirectory = "/home/lsoriano"; home.homeDirectory = "/home/biscuit";
programs.bash.enable = true; programs.bash.enable = true;
home.stateVersion = "23.11"; # Adjust to your system version home.stateVersion = "23.11"; # Adjust to your system version
+3 -2
View File
@@ -39,10 +39,11 @@
}; };
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
users.users.lsoriano = { users.users.biscuit = {
isNormalUser = true; isNormalUser = true;
description = "Lee Roi Daniel Soriano"; description = "Biscuit";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
initialPassword = "biscuitforeveryone";
packages = with pkgs; packages = with pkgs;
[]; [];
}; };