1
Fork 0
satellite/hosts/nixos/euporie/default.nix

21 lines
507 B
Nix
Raw Normal View History

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
../common/optional/pipewire.nix
../common/optional/lightdm.nix
../common/optional/xdg-portal.nix
../common/optional/hyprland.nix
];
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";
}