nixos/Vanguard.nix

43 lines
922 B
Nix

{pkgs, ...}: {
imports = [
./home
./common.nix
./hardware/audio.nix
./hardware/bluetooth.nix
./locales/en_GB.nix
./desktop/hyprland.nix
./desktop/gamescope.nix
./services/syncthing/Vanguard.nix
];
environment.systemPackages = with pkgs; [
mesa
lutris
wine-wayland
mono
winetricks
];
networking = {
hostName = "Vanguard"; # Define your hostname.
nameservers = ["192.168.1.166" "9.9.9.9"];
firewall = {enable = true;};
};
users.users.xenia = {
isNormalUser = true;
description = "Evie Litherland-Smith";
extraGroups = ["networkmanager" "wheel"];
shell = pkgs.fish;
};
home-manager.users.xenia = import ./home/Vanguard/xenia.nix;
# Requirements for Star Citizen
boot.kernel.sysctl."vm.max_map_count" = 16777216;
# Extra hardware configuration
hardware.openrazer = {
enable = true;
users = ["xenia"];
};
}