infrastructure/nixos/common/desktop/default.nix

105 lines
2.7 KiB
Nix
Raw Normal View History

{ pkgs, lib, inputs, ... }: {
2023-04-25 09:01:06 +02:00
# Bootloader.
boot = {
2023-04-28 10:28:06 +02:00
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
2023-04-25 09:01:06 +02:00
loader = {
2023-05-30 09:58:17 +02:00
systemd-boot.enable = lib.mkDefault true;
2023-04-25 09:01:06 +02:00
efi.canTouchEfiVariables = true;
efi.efiSysMountPoint = "/boot/efi";
};
kernel.sysctl = { "fs.inotify.max_user_watches" = 524288; };
initrd = {
systemd.enable = true;
verbose = false;
};
};
2023-06-01 09:14:53 +02:00
hardware.keyboard.qmk.enable = true;
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.victor = import ./home.nix;
extraSpecialArgs = { inherit inputs; };
};
2023-06-01 09:14:53 +02:00
2023-04-25 09:30:41 +02:00
# Enable my config for the gnome desktop environment
services.v.gnome.enable = true;
2023-04-25 09:01:06 +02:00
# Set your time zone.
time.timeZone = "Europe/Amsterdam";
# Select internationalisation properties.
i18n.defaultLocale = "en_GB.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "nl_NL.UTF-8";
LC_IDENTIFICATION = "nl_NL.UTF-8";
LC_MEASUREMENT = "nl_NL.UTF-8";
LC_MONETARY = "nl_NL.UTF-8";
LC_NAME = "nl_NL.UTF-8";
LC_NUMERIC = "nl_NL.UTF-8";
LC_PAPER = "nl_NL.UTF-8";
LC_TELEPHONE = "nl_NL.UTF-8";
LC_TIME = "nl_NL.UTF-8";
};
# Enable CUPS to print documents.
services.printing.enable = true;
# Global Packages
2023-08-07 10:07:59 +02:00
environment = { systemPackages = with pkgs; [ wireguard-tools sbctl ]; };
2023-04-25 09:01:06 +02:00
# 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;
};
virtualisation = {
podman.enable = true;
libvirtd = {
enable = true;
qemu.package = pkgs.qemu_kvm;
};
};
2023-07-31 22:50:17 +02:00
fonts.packages = with pkgs; [
2023-04-25 09:01:06 +02:00
material-design-icons
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
dejavu_fonts
(nerdfonts.override {
fonts =
[ "DejaVuSansMono" "Ubuntu" "DroidSansMono" "NerdFontsSymbolsOnly" ];
})
];
programs.steam = {
enable = true;
# Open ports in the firewall for Steam Remote Play
remotePlay.openFirewall = true;
2023-08-07 10:07:59 +02:00
package = pkgs.steam.override {
extraPkgs = pkgs: with pkgs; [ gamescope mangohud ];
};
2023-04-25 09:01:06 +02:00
};
2023-04-25 09:30:41 +02:00
2023-08-07 10:07:59 +02:00
programs.gamemode.enable = true;
2023-05-30 09:58:17 +02:00
programs.adb.enable = true;
2023-04-25 09:30:41 +02:00
# Networking
networking.networkmanager.enable = true;
networking.firewall.checkReversePath = false;
networking.firewall.enable = false;
2023-04-25 09:01:06 +02:00
}