22 lines
471 B
Nix
Executable file
22 lines
471 B
Nix
Executable file
{...}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "lolcathost";
|
|
|
|
# ----- SERVICES -----
|
|
services = {
|
|
# dbus = {
|
|
# # NOTE: programs.uwsm.enable sets implementation to dbus-broker,
|
|
# # NOTE: however this seems to break dbus
|
|
# implementation = lib.mkForce "dbus";
|
|
# };
|
|
|
|
# Touchpad support
|
|
libinput.enable = true;
|
|
};
|
|
|
|
# DO NOT MODIFY
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
|
}
|