nix-config/hosts/laptop/configuration.nix

29 lines
529 B
Nix
Raw Normal View History

{ 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;
2024-06-13 11:14:19 +02:00
bluetooth = true;
};
system = {
mullvad = true;
};
desktop = {
bloat = true;
};
};
}