udp
This commit is contained in:
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
general = {
|
general = {
|
||||||
Hostname = "TEXAS";
|
Hostname = "TEXAS";
|
||||||
Username = "kenji";
|
Username = "lsoriano";
|
||||||
Timezone = "America/Chicago";
|
Timezone = "America/Chicago";
|
||||||
|
|
||||||
allowUnfree = true; # allows installation of commercial apps.
|
allowUnfree = true; # allows installation of commercial apps.
|
||||||
|
|||||||
@@ -5,12 +5,11 @@
|
|||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
../../system/dev/macos.nix
|
|
||||||
];
|
];
|
||||||
# List packages installed in system profile. To search by name, run:
|
# List packages installed in system profile. To search by name, run:
|
||||||
# $ nix-env -qaP | grep wget
|
# $ nix-env -qaP | grep wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
python313
|
python313Full
|
||||||
];
|
];
|
||||||
|
|
||||||
# Auto upgrade nix package and the daemon service.
|
# Auto upgrade nix package and the daemon service.
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
user.name = "${general.gitProfile.user}";
|
user.name = "${general.gitProfile.User}";
|
||||||
user.email = "${general.gitProfile.email}";
|
user.email = "${general.gitProfile.Email}";
|
||||||
init.defaultBranch = "${general.gitProfile.defaultBranch}";
|
init.defaultBranch = "${general.gitProfile.defaultBranch}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{terminal, ...}: {
|
{general, ...}: {
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
@@ -7,8 +7,8 @@
|
|||||||
confirm_os_window_close = 0;
|
confirm_os_window_close = 0;
|
||||||
window_padding_width = 10;
|
window_padding_width = 10;
|
||||||
|
|
||||||
font_size = terminal.Size;
|
font_size = general.terminal.Size;
|
||||||
font_family = terminal.Font;
|
font_family = general.terminal.Font;
|
||||||
bold_font = "auto";
|
bold_font = "auto";
|
||||||
italic_font = "auto";
|
italic_font = "auto";
|
||||||
bold_italic_font = "auto";
|
bold_italic_font = "auto";
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
terminal,
|
general,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enableCompletion = false;
|
enableCompletion = false;
|
||||||
syntaxHighlighting.enable = false;
|
syntaxHighlighting.enable = false;
|
||||||
shellAliases = terminal.shellAliases;
|
shellAliases = general.terminal.Aliases;
|
||||||
history.size = 10000;
|
history.size = 10000;
|
||||||
antidote = {
|
antidote = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user