diff --git a/flake.nix b/flake.nix index 70c1df0..5faf1eb 100644 --- a/flake.nix +++ b/flake.nix @@ -38,7 +38,7 @@ ]; }; - homeConfigurations.amper = home-manager.lib.homeManagerConfiguration { + homeConfigurations.sweetbread = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages.${system}; modules = [ ./home-manager/home.nix ]; }; diff --git a/home-manager/home.nix b/home-manager/home.nix index e2ea67f..33417d1 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -6,8 +6,8 @@ ]; home = { - username = "amper"; - homeDirectory = "/home/amper"; + username = "sweetbread"; + homeDirectory = "/home/sweetbread"; stateVersion = "23.11"; }; } diff --git a/home-manager/modules/git.nix b/home-manager/modules/git.nix index c3dbae7..3cef53f 100644 --- a/home-manager/modules/git.nix +++ b/home-manager/modules/git.nix @@ -1,7 +1,7 @@ { programs.git = { enable = true; - userName = "Andrey0189"; - userEmail = "varnavsky06@gmail.com"; + userName = "Sweetbread"; + userEmail = "sweetbread@coders-squad.com"; }; } diff --git a/nixos/configuration.nix b/nixos/configuration.nix index b23d606..4327b71 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -11,7 +11,7 @@ networking.hostName = "nixos"; # Define your hostname. - time.timeZone = "Asia/Tashkent"; # Set your time zone. + time.timeZone = "Europe/Moscow"; # Set your time zone. i18n.defaultLocale = "en_US.UTF-8"; # Select internationalisation properties. diff --git a/nixos/modules/user.nix b/nixos/modules/user.nix index ea59b78..e78c7f8 100644 --- a/nixos/modules/user.nix +++ b/nixos/modules/user.nix @@ -4,14 +4,14 @@ users = { defaultUserShell = pkgs.zsh; - users.amper = { + users.sweetbread = { isNormalUser = true; - description = "Ampersand"; + description = "Sweet Bread"; extraGroups = [ "networkmanager" "wheel" "input" "libvirtd" ]; packages = with pkgs; []; }; }; # Enable automatic login for the user. - services.getty.autologinUser = "amper"; + services.getty.autologinUser = "sweetbread"; }