Nix-Config/system/configuration.nix

123 lines
2.8 KiB
Nix
Raw Normal View History

2023-03-15 14:58:55 +00:00
{ config, pkgs, inputs, ... }:
2023-02-05 14:48:47 +00:00
2023-02-23 12:26:53 +00:00
let
2023-02-06 09:21:35 +00:00
nvidia-offload = pkgs.writeShellScriptBin "nvidia-offload" ''
export __NV_PRIME_RENDER_OFFLOAD=1
export __NV_PRIME_RENDER_OFFLOAD_PROVIDER=NVIDIA-G0
export __GLX_VENDOR_LIBRARY_NAME=nvidia
export __VK_LAYER_NV_optimus=NVIDIA_only
exec "$@"
'';
in
2023-02-05 14:48:47 +00:00
{
imports =
2023-02-05 16:57:39 +00:00
[
2023-02-05 14:48:47 +00:00
./hardware-configuration.nix
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2023-02-23 12:26:53 +00:00
networking.hostName = "ritchie";
2023-02-06 09:21:35 +00:00
networking.networkmanager.enable = true;
2023-02-05 14:48:47 +00:00
i18n.defaultLocale = "en_GB.UTF-8";
2023-02-05 14:48:47 +00:00
time.timeZone = "Europe/London";
# Enable sound.
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
users.groups.tmux.gid = 1000; # Used for tmux pairing
systemd.tmpfiles.rules = [
2023-03-13 08:57:11 +00:00
"d /var/tmux_share 2770 tsv tmux"
];
users.users.tsv = {
isNormalUser = true;
extraGroups = [
"wheel"
"docker"
"tmux"
2023-04-04 21:21:35 +00:00
"networkmanager"
];
initialPassword = "password";
};
users.users.foxsoft = {
isNormalUser = true;
extraGroups = [
"tmux"
];
openssh.authorizedKeys.keyFiles = [
../users/foxsoft/authorized_keys
];
};
2023-02-05 14:48:47 +00:00
2023-02-17 11:51:36 +00:00
nix.settings.trusted-users = [ "root" "tsv" ];
2023-03-09 18:49:28 +00:00
nix = {
extraOptions = "experimental-features = nix-command flakes";
package = pkgs.nixFlakes;
};
2023-02-05 14:48:47 +00:00
services.xserver.enable = true;
services.xserver.displayManager.sddm.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
2023-02-06 09:21:35 +00:00
hardware.nvidia.modesetting.enable = true;
services.xserver.videoDrivers = ["nvidia" ];
hardware.opengl.enable = true;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
hardware.nvidia.prime = {
sync.enable = true;
nvidiaBusId = "PCI:1:0:0";
intelBusId = "PCI:0:2:0";
};
hardware.bluetooth.enable = true;
2023-02-05 14:48:47 +00:00
2023-03-15 14:58:55 +00:00
environment.systemPackages = [
pkgs.wget
pkgs.tmux
pkgs.git
pkgs.pciutils
pkgs.xdg-desktop-portal
pkgs.xdg-desktop-portal-gtk
pkgs.xdg-desktop-portal-kde
inputs.devenv.packages.x86_64-linux.devenv
2023-02-05 14:48:47 +00:00
];
2023-03-17 14:28:12 +00:00
environment.variables.LC_ALL = "en_GB.UTF-8";
2023-03-15 14:58:55 +00:00
2023-02-05 14:48:47 +00:00
nixpkgs.config.allowUnfree = true;
2023-04-03 15:40:01 +00:00
nixpkgs.overlays = [
(self: super: {
# Experimental features in Waybar gives us access to workspace selectors
waybar = super.waybar.overrideAttrs (oldAttrs: {
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
});
})
2023-04-04 08:06:26 +00:00
inputs.codeium.overlays.x86_64-linux.default
2023-04-03 15:40:01 +00:00
];
2023-02-05 16:57:39 +00:00
virtualisation.docker.enable = true;
2023-02-05 14:48:47 +00:00
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
2023-02-05 14:48:47 +00:00
2023-02-05 16:57:39 +00:00
system.stateVersion = "22.11"; # Don't change this
2023-02-05 14:48:47 +00:00
}