mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
8c9d60ca56
Necessary since the networking module was merged with system.
34 lines
619 B
Nix
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;
|
|
};
|
|
};
|
|
}
|