mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
home-manager: quote username in init template
This helps when the username contains, for example, the '.' character.
This commit is contained in:
parent
cc05d26326
commit
8506c69222
1 changed files with 1 additions and 1 deletions
|
@ -406,7 +406,7 @@ EOF
|
||||||
system = "$nixSystem";
|
system = "$nixSystem";
|
||||||
pkgs = nixpkgs.legacyPackages.\${system};
|
pkgs = nixpkgs.legacyPackages.\${system};
|
||||||
in {
|
in {
|
||||||
homeConfigurations.$USER = home-manager.lib.homeManagerConfiguration {
|
homeConfigurations."$USER" = home-manager.lib.homeManagerConfiguration {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
|
||||||
# Specify your home configuration modules here, for example,
|
# Specify your home configuration modules here, for example,
|
||||||
|
|
Loading…
Reference in a new issue