mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
00135526e7
Simplifies things a bit since my target audience includes those interested in the Japanese language. Opinionated defaults like this makes it easier for end-users to be immediately productive without having to spend time configuring things.
32 lines
577 B
Nix
32 lines
577 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 = {
|
|
bloat = true;
|
|
};
|
|
};
|
|
}
|