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;