nix-config/default.nix
Donovan Glover 8c9d60ca56
chore: Rename networking to system
Necessary since the networking module was merged with system.
2024-04-06 12:30:04 -04:00

34 lines
619 B
Nix

{ self, pkgs, ... }:
let
inherit (builtins) attrValues;
in
{
imports = attrValues self.nixosModules ++ [
./hardware/laptop.nix
];
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;
};
system = {
mullvad = true;
};
desktop = {
japanese = true;
bloat = true;
wine = true;
};
};
}