test
This commit is contained in:
+1
-1
@@ -11,7 +11,7 @@
|
|||||||
terminal = {
|
terminal = {
|
||||||
termFont = "JetBrainsMono Nerd Font"; # e.g., JetBrainsMono Nerd Font
|
termFont = "JetBrainsMono Nerd Font"; # e.g., JetBrainsMono Nerd Font
|
||||||
termSize = "20";
|
termSize = "20";
|
||||||
termShell = "fish";
|
termShell = "zsh";
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
ls = "ls --color=auto";
|
ls = "ls --color=auto";
|
||||||
update = ''
|
update = ''
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
pkgs,
|
pkgs,
|
||||||
builder,
|
builder,
|
||||||
terminal,
|
terminal,
|
||||||
|
username,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
# List packages installed in system profile. To search by name, run:
|
# List packages installed in system profile. To search by name, run:
|
||||||
@@ -30,11 +31,11 @@
|
|||||||
# The platform the configuration will be used on.
|
# The platform the configuration will be used on.
|
||||||
nixpkgs.hostPlatform = "aarch64-darwin";
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
||||||
|
|
||||||
users.users.lsoriano = {
|
users.users.${username} = {
|
||||||
name = "lsoriano";
|
name = "${username}";
|
||||||
home = "/Users/lsoriano";
|
home = "/Users/${username}";
|
||||||
shell = pkgs.${terminal.termShell};
|
shell = pkgs.${terminal.termShell};
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.users.lsoriano = import ../../home/macos/home.nix;
|
home-manager.users.${username} = import ../../home/macos/home.nix;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user