2023-05-28 05:24:36 +02:00
|
|
|
{ lib, ... }: {
|
2023-05-28 02:00:10 +02:00
|
|
|
imports = [
|
|
|
|
../common/global
|
2023-05-28 05:24:36 +02:00
|
|
|
../common/users/guest.nix
|
2023-05-28 02:00:10 +02:00
|
|
|
|
2023-12-10 23:48:46 +01:00
|
|
|
../common/optional/greetd.nix
|
2023-05-28 02:00:10 +02:00
|
|
|
../common/optional/pipewire.nix
|
2023-12-10 23:48:46 +01:00
|
|
|
../common/optional/desktop/xdg-portal.nix
|
|
|
|
../common/optional/wayland/hyprland.nix
|
2023-05-28 02:00:10 +02:00
|
|
|
];
|
|
|
|
|
2023-05-28 05:24:36 +02:00
|
|
|
# Usually included in the hardware-configuration
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
2023-05-28 02:00:10 +02:00
|
|
|
# Set the name of this machine!
|
|
|
|
networking.hostName = "euporie";
|
|
|
|
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
|
|
system.stateVersion = "22.11";
|
|
|
|
}
|