sisyphus/nixos/hosts/Tibo-NixDesk/default.nix

64 lines
1.6 KiB
Nix
Raw Normal View History

2023-04-11 18:01:53 +02:00
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
2023-05-24 21:38:30 +02:00
../../modules/hardware/nvidia.nix
2023-04-11 18:01:53 +02:00
../../modules/apps/virtualbox
../../modules/des/gnome
];
# Bootloader.
2023-09-11 11:06:55 +02:00
boot.loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
};
2023-04-11 18:01:53 +02:00
2023-09-11 11:06:55 +02:00
networking = {
hostName = "Tibo-NixDesk";
networkmanager.enable = true;
# wireless.enable = true; # Enables wireless support via wpa_supplicant.
};
2023-04-11 18:01:53 +02:00
# Set your time zone.
time.timeZone = "Europe/Brussels";
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
2023-06-17 10:01:00 +02:00
system.stateVersion = "23.05";
2023-04-11 18:01:53 +02:00
}