nix/hosts/desktop/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2024-03-12 21:24:29 +01:00
{ config, pkgs, ... }:
{
imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix
2024-03-14 21:36:28 +01:00
../../modules/system/desktop/hyprland.nix
#../../modules/system/desktop/plasma.nix
2024-03-12 21:24:29 +01:00
../../modules/system/desktop/nvidia.nix
../../modules/system/programs/sunshine.nix
2024-03-16 20:45:29 +01:00
../../modules/system/programs/syncthing.nix
2024-03-12 21:24:29 +01:00
../../modules/system/programs/thunar.nix
../../modules/system/utils/common.nix
../../modules/system/utils/firewall.nix
2024-03-14 21:36:28 +01:00
#../../modules/system/utils/fprint.nix
2024-03-12 21:24:29 +01:00
../../modules/system/utils/garbage-collection.nix
../../modules/system/utils/locale.nix
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Bootloader.
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
networking.hostName = "xv-desktop"; # Define your hostname.
networking.interfaces.enp7s0.wakeOnLan.enable = true;
users.users.xeovalyte = {
isNormalUser = true;
description = "Timo Boomers";
extraGroups = [ "networkmanager" "wheel" "dialout" ];
};
services.printing.enable = true;
2024-03-16 20:45:29 +01:00
# Keyboard
hardware.ckb-next.enable = true;
2024-03-12 21:24:29 +01:00
system.stateVersion = "23.11";
}