21 lines
507 B
Nix
21 lines
507 B
Nix
{ lib, ... }: {
|
|
imports = [
|
|
../common/global
|
|
../common/users/guest.nix
|
|
|
|
../common/optional/pipewire.nix
|
|
../common/optional/lightdm.nix
|
|
../common/optional/xdg-portal.nix
|
|
../common/optional/hyprland.nix
|
|
];
|
|
|
|
# Usually included in the hardware-configuration
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
# Set the name of this machine!
|
|
networking.hostName = "euporie";
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
system.stateVersion = "22.11";
|
|
}
|