nix-config/hosts/laptop/configuration.nix
2024-07-05 17:41:55 -04:00

29 lines
529 B
Nix

{ self, pkgs, ... }:
let
inherit (builtins) attrValues;
in
{
imports = attrValues self.nixosModules;
nixpkgs.overlays = attrValues self.overlays;
home-manager.sharedModules = attrValues self.homeManagerModules;
environment.systemPackages = attrValues self.packages.${pkgs.system};
modules = {
hardware = {
keyboardBinds = true;
lidIgnore = true;
powerIgnore = true;
bluetooth = true;
};
system = {
mullvad = true;
};
desktop = {
bloat = true;
};
};
}