2023-01-10 02:38:06 +01:00
|
|
|
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
|
|
imports = [
|
|
|
|
../common/global
|
|
|
|
../common/users/adrielus.nix
|
|
|
|
|
|
|
|
../common/optional/pipewire.nix
|
|
|
|
../common/optional/touchpad.nix
|
|
|
|
../common/optional/xserver.nix
|
2023-02-09 23:55:36 +01:00
|
|
|
../common/optional/gdm.nix
|
2023-01-10 02:38:06 +01:00
|
|
|
../common/optional/xmonad
|
|
|
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
./boot.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "tethys";
|
2023-01-16 22:01:05 +01:00
|
|
|
|
|
|
|
# A few ad-hoc settings
|
2023-01-10 02:38:06 +01:00
|
|
|
hardware.opengl.enable = true;
|
2023-01-16 22:01:05 +01:00
|
|
|
programs.kdeconnect.enable = true;
|
2023-02-15 11:28:43 +01:00
|
|
|
# i18n.inputMethod.enabled = "uim";
|
2023-01-10 02:38:06 +01:00
|
|
|
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
|
|
system.stateVersion = "22.11";
|
|
|
|
}
|