changed user name
This commit is contained in:
@@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
[];
|
[];
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user