mirror of
https://github.com/zephrynis/nix-flake.git
synced 2026-02-18 20:21:53 +00:00
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:
@@ -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;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
@@ -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; [
|
||||
|
||||
Reference in New Issue
Block a user