changed user name
This commit is contained in:
@@ -38,7 +38,7 @@
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
users.lsoriano = import ./home-manager/home.nix;
|
||||
users.biscuit = import ./home-manager/home.nix;
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{ inputs, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.username = "lsoriano";
|
||||
home.homeDirectory = "/home/lsoriano";
|
||||
home.username = "biscuit";
|
||||
home.homeDirectory = "/home/biscuit";
|
||||
|
||||
programs.bash.enable = true;
|
||||
home.stateVersion = "23.11"; # Adjust to your system version
|
||||
|
||||
@@ -39,10 +39,11 @@
|
||||
};
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.lsoriano = {
|
||||
users.users.biscuit = {
|
||||
isNormalUser = true;
|
||||
description = "Lee Roi Daniel Soriano";
|
||||
description = "Biscuit";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
initialPassword = "biscuitforeveryone";
|
||||
packages = with pkgs;
|
||||
[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user