22 lines
426 B
Nix
22 lines
426 B
Nix
|
|
{...}: {
|
||
|
|
imports = [
|
||
|
|
../../system
|
||
|
|
./hardware-configuration.nix
|
||
|
|
];
|
||
|
|
|
||
|
|
networking.hostName = "hebesu";
|
||
|
|
services.tzupdate.enable = true;
|
||
|
|
services.xserver = {
|
||
|
|
videoDrivers = ["modesetting"];
|
||
|
|
deviceSection = ''
|
||
|
|
Option "DRI" "2"
|
||
|
|
Option "TearFree" "true"
|
||
|
|
'';
|
||
|
|
xkb.options = "ctrl:nocaps";
|
||
|
|
};
|
||
|
|
users.users.ahnwuoa = {
|
||
|
|
isNormalUser = true;
|
||
|
|
extraGroups = ["wheel" "podman"];
|
||
|
|
};
|
||
|
|
}
|