❄️ Dotfiles for our NixOS system configuration.
1{ 2 lib, 3 pkgs, 4 config, 5 ... 6}: 7 8{ 9 config = lib.mkIf config.settings.profiles.laptop.enable { 10 environment.systemPackages = with pkgs; [ asusctl ]; # Control panel for ASUS laptops 11 12 services.asusd = { 13 enable = true; 14 enableUserService = true; 15 }; 16 }; 17}