feat: add some core functionality that is required for system function

This commit is contained in:
Youwen Wu 2024-12-25 17:19:28 -08:00
parent 2823e5284e
commit d48dd3be2e
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -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;