211 lines
4 KiB
Nix
211 lines
4 KiB
Nix
# ++ 27_Co: Cobalt
|
|
#
|
|
# Main tower workstation environment
|
|
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib._elements; {
|
|
imports = [
|
|
./hardware.nix
|
|
./disk-config.nix
|
|
./beszel-agent.nix
|
|
|
|
./wayland.nix
|
|
];
|
|
|
|
elements = {
|
|
hostname = "cobalt";
|
|
users = ["christopher"];
|
|
quirks = ["avahi" "docker" "nix-ld"];
|
|
|
|
secrets = {
|
|
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPjqieS4GkYAa1WRYZpxjgYsj7VGZ9U+rTFCkX8M0umD";
|
|
};
|
|
};
|
|
|
|
# Set the default drive
|
|
disko.devices.disk.main.device = "/dev/nvme1n1";
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme = "gnome";
|
|
style = "adwaita-dark";
|
|
};
|
|
|
|
networking = {
|
|
hostName = "cobalt";
|
|
firewall.enable = false;
|
|
interfaces.eno1.wakeOnLan.enable = true;
|
|
};
|
|
|
|
# Set your time zone.
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
console = {
|
|
font = "Lat2-Terminus16";
|
|
useXkbConfig = true; # use xkbOptions in tty.
|
|
};
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
config.common.default = ["hyprland"];
|
|
config.hyprland.default = ["wlr" "gtk"];
|
|
extraPortals = [
|
|
pkgs.xdg-desktop-portal-gtk
|
|
];
|
|
wlr.enable = true;
|
|
};
|
|
|
|
programs = {
|
|
weylus.users = ["christopher"];
|
|
|
|
dconf.enable = true;
|
|
|
|
steam = {
|
|
enable = true;
|
|
protontricks.enable = true;
|
|
remotePlay.openFirewall = true;
|
|
};
|
|
# VR support
|
|
envision.enable = true;
|
|
|
|
# For game-related system optimisations
|
|
gamemode.enable = true;
|
|
|
|
_1password.enable = true;
|
|
_1password-gui = {
|
|
enable = true;
|
|
# Certain features, including CLI integration and system authentication support,
|
|
# require enabling PolKit integration on some desktop environments (e.g. Plasma).
|
|
polkitPolicyOwners = ["christopher"];
|
|
};
|
|
};
|
|
|
|
services = {
|
|
# Bluetooth manager
|
|
blueman.enable = true;
|
|
|
|
# Linux link via MQTT
|
|
lnxlink.enable = true;
|
|
|
|
pulseaudio.enable = true;
|
|
pulseaudio.support32Bit = true;
|
|
pipewire.enable = lib.mkForce false;
|
|
|
|
# Automatic mounting of removable media
|
|
udisks2.enable = true;
|
|
|
|
gvfs.enable = true; # Mount/trash/...
|
|
tumbler.enable = true; # Thumbnail support in Thunar
|
|
|
|
gnome.gnome-keyring.enable = true;
|
|
|
|
# Enable CUPS to print documents.
|
|
printing = {
|
|
enable = true;
|
|
drivers = with pkgs; [
|
|
brlaser
|
|
];
|
|
};
|
|
|
|
logind.extraConfig = ''
|
|
RuntimeDirectorySize=6G
|
|
'';
|
|
|
|
# Smartcard support, necessary for Yubikey logins
|
|
pcscd.enable = true;
|
|
};
|
|
|
|
programs = {
|
|
thunar.enable = true;
|
|
thunar.plugins = with pkgs.xfce; [
|
|
thunar-archive-plugin
|
|
];
|
|
|
|
gnupg.agent = {
|
|
enable = true;
|
|
pinentryPackage = pkgs.pinentry-gtk2;
|
|
enableSSHSupport = true;
|
|
};
|
|
};
|
|
|
|
environment = {
|
|
# List packages installed in system profile. To search, run:
|
|
# $ nix search wget
|
|
systemPackages = with pkgs; [
|
|
# Global apps
|
|
vim
|
|
wget
|
|
htop
|
|
gnumake
|
|
libnotify
|
|
|
|
lact # GPU tuning
|
|
|
|
# Oxidized coreutils
|
|
uutils-coreutils-noprefix
|
|
|
|
wally-cli
|
|
keymapp
|
|
pavucontrol
|
|
|
|
nix-tree
|
|
nix-output-monitor
|
|
|
|
xdg-desktop-portal
|
|
xdg-desktop-portal-gtk
|
|
];
|
|
};
|
|
|
|
users.groups.pico = {};
|
|
|
|
systemd.packages = [pkgs.lact];
|
|
systemd.services.lactd.wantedBy = ["multi-user.target"];
|
|
|
|
hardware = {
|
|
amdgpu = {
|
|
opencl.enable = true;
|
|
overdrive.enable = true;
|
|
# amdvlk = {
|
|
# enable = true;
|
|
# support32Bit.enable = true;
|
|
# };
|
|
};
|
|
|
|
bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
};
|
|
|
|
graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
|
|
# SANE scanner support
|
|
sane = {
|
|
enable = true;
|
|
extraBackends = [pkgs.brscan4];
|
|
};
|
|
|
|
# Input emulation from userspace (see weylus).
|
|
uinput.enable = true;
|
|
|
|
# Enable zsa keyboard (Moonlander) support.
|
|
keyboard.zsa.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "23.05"; # Do not change this value!
|
|
|
|
# Set up our bootloader
|
|
boot.loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
grub = {
|
|
enable = true;
|
|
device = "nodev";
|
|
efiSupport = true;
|
|
};
|
|
};
|
|
}
|