nix-config/hosts/laptop/configuration.nix
Donovan Glover b80f3f2340
meta: Use standard hosts directory
This makes sense now that we have multiple hosts in the same flake.
2024-06-20 21:34:57 -04:00

31 lines
598 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;
disableLaptopKeyboard = true;
lidIgnore = true;
powerIgnore = true;
bluetooth = true;
};
system = {
mullvad = true;
};
desktop = {
bloat = true;
theme = "selenized-black";
};
};
}