eff6860aa2
The old configuration is still available in the legacy branch of this repository. It contains the mostly server oriented configuration while this new configuration is aimed at desktop usage.
81 lines
1.6 KiB
Nix
81 lines
1.6 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware/workstation.nix
|
|
./persist/workstation.nix
|
|
../wm/xmonad.nix
|
|
];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
boot.supportedFilesystems = [ "btrfs" "xfs" ];
|
|
|
|
networking = {
|
|
hostName = "workstation";
|
|
enableIPv6 = false;
|
|
nameservers = [ "1.1.1.1" ];
|
|
defaultGateway = "192.168.2.1";
|
|
interfaces.enp34s0.ipv4.addresses = [{
|
|
address = "192.168.2.68";
|
|
prefixLength = 24;
|
|
}];
|
|
};
|
|
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
console = {
|
|
font = "Lat2-Terminus16";
|
|
useXkbConfig = true;
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
hardware = {
|
|
opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
};
|
|
nvidia = {
|
|
modesetting.enable = true;
|
|
nvidiaSettings = true;
|
|
open = false;
|
|
package = config.boot.kernelPackages.nvidiaPackages.production;
|
|
};
|
|
};
|
|
|
|
programs.mtr.enable = true;
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
|
|
security.rtkit.enable = true;
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
pulse.enable = true;
|
|
jack.enable = true;
|
|
};
|
|
|
|
# Todo: Move these packages out in the correct files.
|
|
environment.systemPackages = with pkgs; [
|
|
fastfetch
|
|
neovim
|
|
firefox
|
|
rofi
|
|
wget
|
|
unzip
|
|
git
|
|
tree
|
|
];
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|
|
|