flake/hosts/lolcathost/default.nix

23 lines
471 B
Nix
Raw Permalink Normal View History

2026-02-09 01:51:30 +10:00
{...}: {
2024-10-30 13:51:36 +10:00
imports = [
2024-11-07 17:37:15 +10:00
./hardware-configuration.nix
2025-08-01 13:17:12 +10:00
];
2026-02-09 01:51:30 +10:00
networking.hostName = "lolcathost";
2024-10-30 13:51:36 +10:00
2024-11-07 17:37:15 +10:00
# ----- SERVICES -----
services = {
2025-09-03 00:24:41 +10:00
# dbus = {
# # NOTE: programs.uwsm.enable sets implementation to dbus-broker,
# # NOTE: however this seems to break dbus
# implementation = lib.mkForce "dbus";
# };
2025-08-31 15:11:28 +10:00
2025-08-01 12:32:52 +10:00
# Touchpad support
2024-11-07 17:37:15 +10:00
libinput.enable = true;
};
2024-10-30 13:51:36 +10:00
2024-11-07 17:37:15 +10:00
# DO NOT MODIFY
2024-10-30 13:51:36 +10:00
system.stateVersion = "24.05"; # Did you read the comment?
}