Set user configuration to 'zeph' in Nix files

Replaces placeholder 'yourusername' with 'zeph' in flake.nix and home/home.nix for user-specific Home Manager configuration.
This commit is contained in:
2025-10-26 21:57:12 +00:00
parent 7b32c75ce5
commit 83ac40baa3
2 changed files with 6 additions and 6 deletions

View File

@@ -41,8 +41,8 @@
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs; };
# Replace "yourusername" with your actual username
home-manager.users.yourusername = import ./home/home.nix;
# User configuration
home-manager.users.zeph = import ./home/home.nix;
}
];
};
@@ -68,8 +68,8 @@
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit inputs; };
# Replace "yourusername" with your actual username
home-manager.users.yourusername = import ./home/home.nix;
# User configuration
home-manager.users.zeph = import ./home/home.nix;
}
];
};

View File

@@ -3,8 +3,8 @@
{
# Home Manager configuration for user-level dotfiles and applications
home.username = "yourusername"; # Change this
home.homeDirectory = "/home/yourusername"; # Change this
home.username = "zeph";
home.homeDirectory = "/home/zeph";
# Packages to install for this user
home.packages = with pkgs; [