nix-config/hosts/laptop/configuration.nix

28 lines
526 B
Nix
Raw Normal View History

{ nix-config, pkgs, ... }:
let
inherit (builtins) attrValues;
in
{
imports = attrValues nix-config.nixosModules;
nixpkgs.overlays = attrValues nix-config.overlays;
home-manager.sharedModules = attrValues nix-config.homeModules;
environment.systemPackages = attrValues nix-config.packages.${pkgs.system};
modules = {
hardware = {
keyboardBinds = true;
lidIgnore = true;
2024-06-13 11:14:19 +02:00
bluetooth = true;
};
system = {
mullvad = true;
};
desktop = {
bloat = true;
};
};
}