blob: 7862a21c0ea954ac85e2967435c47311eae5bfd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs, ... }:
{
imports = [
../gui/default.nix
../gui/autorandr.nix
../gui/networkmanager.nix
];
home.packages = with pkgs; [
acpi
];
custom.hidpi = false;
}
|