mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-17 20:52:09 -08:00
feat: add some core functionality that is required for system function
This commit is contained in:
parent
2823e5284e
commit
d48dd3be2e
1 changed files with 12 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue