about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2024-11-02 23:10:44 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2024-11-02 23:10:44 +0100
commite23d7b6be16c9f57b4b96e885418c54d3098cb79 (patch)
tree67deed86eb7fba7458909794124e0ed0a9b82a97
parentdotfiles: nvim: run autoformatter async and install haskell formatter (diff)
downloadnixos-config-e23d7b6be16c9f57b4b96e885418c54d3098cb79.tar.gz
nixos-config-e23d7b6be16c9f57b4b96e885418c54d3098cb79.tar.bz2
nixos-config-e23d7b6be16c9f57b4b96e885418c54d3098cb79.zip
Update
-rw-r--r--dotfiles/alacritty.toml3
-rw-r--r--flake.lockbin7844 -> 7844 bytes
-rw-r--r--hardware/chromebook/hardware.nix2
-rw-r--r--hardware/laptop/hardware.nix2
-rw-r--r--hardware/pc/hardware.nix2
-rw-r--r--hardware/thinkpad/hardware.nix2
-rw-r--r--hardware/virtualbox/hardware.nix2
-rw-r--r--hosts/home.nix1
-rw-r--r--modules/fonts/default.nix2
9 files changed, 9 insertions, 7 deletions
diff --git a/dotfiles/alacritty.toml b/dotfiles/alacritty.toml
index c45a896..f509f4c 100644
--- a/dotfiles/alacritty.toml
+++ b/dotfiles/alacritty.toml
@@ -1,3 +1,4 @@
+[general]
 live_config_reload = true
 
 [colors]
@@ -287,7 +288,7 @@ multiplier = 3
 save_to_clipboard = true
 semantic_escape_chars = ",│`|:\"' ()[]{}<>"
 
-[shell]
+[terminal.shell]
 args = ["-c", "zsh"]
 program = "/bin/sh"
 
diff --git a/flake.lock b/flake.lock
index 9027341..3e8bc01 100644
--- a/flake.lock
+++ b/flake.lock
Binary files differdiff --git a/hardware/chromebook/hardware.nix b/hardware/chromebook/hardware.nix
index 712c1bc..e945c6d 100644
--- a/hardware/chromebook/hardware.nix
+++ b/hardware/chromebook/hardware.nix
@@ -40,7 +40,7 @@ in
 
   hardware = {
     cpu.intel.updateMicrocode = true;
-    opengl = {
+    graphics = {
       enable = true;
       extraPackages = with pkgs; [
         intel-media-driver # LIBVA_DRIVER_NAME=iHD
diff --git a/hardware/laptop/hardware.nix b/hardware/laptop/hardware.nix
index d7d3ecc..bbd684b 100644
--- a/hardware/laptop/hardware.nix
+++ b/hardware/laptop/hardware.nix
@@ -39,7 +39,7 @@ in
   hardware = {
     cpu.intel.updateMicrocode = true;
 
-    opengl = {
+    graphics = {
       enable = true;
     };
 
diff --git a/hardware/pc/hardware.nix b/hardware/pc/hardware.nix
index 3d3a8cc..b62a323 100644
--- a/hardware/pc/hardware.nix
+++ b/hardware/pc/hardware.nix
@@ -31,7 +31,7 @@ in
   hardware = {
     cpu.intel.updateMicrocode = true;
 
-    opengl = {
+    graphics = {
       enable = true;
     };
   };
diff --git a/hardware/thinkpad/hardware.nix b/hardware/thinkpad/hardware.nix
index a96b4f1..f3f3f5c 100644
--- a/hardware/thinkpad/hardware.nix
+++ b/hardware/thinkpad/hardware.nix
@@ -40,7 +40,7 @@ in
 
   hardware = {
     cpu.intel.updateMicrocode = true;
-    opengl = {
+    graphics = {
       enable = true;
       extraPackages = with pkgs; [
         intel-media-driver # LIBVA_DRIVER_NAME=iHD
diff --git a/hardware/virtualbox/hardware.nix b/hardware/virtualbox/hardware.nix
index 21b8f42..b5ce8b7 100644
--- a/hardware/virtualbox/hardware.nix
+++ b/hardware/virtualbox/hardware.nix
@@ -22,7 +22,7 @@
   };
 
   hardware = {
-    opengl = {
+    graphics = {
       enable = true;
     };
   };
diff --git a/hosts/home.nix b/hosts/home.nix
index b5fad62..9dfb894 100644
--- a/hosts/home.nix
+++ b/hosts/home.nix
@@ -143,6 +143,7 @@
       extraConfig = {
         push.autoSetupRemote = true;
         init.defaultBranch = "master";
+        safe.directory = [ "*" ];
         sendemail = {
           smtpserver = "smtp.gmail.com";
           smtpserverport = "587";
diff --git a/modules/fonts/default.nix b/modules/fonts/default.nix
index c8c6e55..fc2a4a0 100644
--- a/modules/fonts/default.nix
+++ b/modules/fonts/default.nix
@@ -1,7 +1,7 @@
 { config, pkgs, ... }: {
   fonts.packages = with pkgs; [
     noto-fonts
-    noto-fonts-cjk
+    noto-fonts-cjk-sans
     noto-fonts-emoji
     (nerdfonts.override { fonts = [ "InconsolataLGC" "Noto" ]; })
   ];