From d48dd3be2e41fb6811fec925d11af6aaaabe19e2 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Wed, 25 Dec 2024 17:19:28 -0800 Subject: [PATCH] feat: add some core functionality that is required for system function --- modules/linux/core/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modules/linux/core/default.nix b/modules/linux/core/default.nix index 4c8604e..cc88d2a 100644 --- a/modules/linux/core/default.nix +++ b/modules/linux/core/default.nix @@ -133,6 +133,7 @@ in trusted-public-keys = [ "hydra.nixos.org-1:CNHJZBh9K4tP3EKF6FkkgeVYsS3ohTl+oS0Qa8bezVs=" ]; + trusted-users = [ "@wheel" ]; }; channel.enable = false; @@ -147,6 +148,15 @@ in flake = config.liminalOS.flakeLocation; }; + programs.nix-ld = { + enable = true; + libraries = with pkgs; [ + icu + xorg.libXtst + xorg.libXi + ]; + }; + boot.tmp.cleanOnBoot = true; hardware.enableRedistributableFirmware = true; @@ -171,6 +181,8 @@ in programs.dconf.enable = true; + programs.fish.enable = true; + hardware.bluetooth = lib.mkIf cfg.bluetooth.enable { enable = true; powerOnBoot = true;