dotfiles/boxes/desktop/configuration.nix

277 lines
7.3 KiB
Nix
Raw Normal View History

230 current 2024-09-08 23:54:23 24.11.20240831.12228ff 6.11.0-rc5 * 231 current 2024-09-08 23:55:54 24.11.20240831.12228ff 6.11.0-rc5 * 232 current 2024-09-08 23:57:58 24.11.20240831.12228ff 6.11.0-rc5 * 233 current 2024-09-09 00:00:25 24.11.20240831.12228ff 6.11.0-rc5 * 234 current 2024-09-09 00:01:40 24.11.20240831.12228ff 6.11.0-rc5 * 235 current 2024-09-09 00:08:17 24.11.20240831.12228ff 6.11.0-rc5 * 236 current 2024-09-09 00:09:22 24.11.20240831.12228ff 6.11.0-rc5 * 237 current 2024-09-09 00:20:19 24.11.20240831.12228ff 6.11.0-rc5 * 238 current 2024-09-09 00:40:29 24.11.20240831.12228ff 6.11.0-rc5 * 239 current 2024-09-09 00:42:12 24.11.20240831.12228ff 6.11.0-rc5 * 240 current 2024-09-09 00:44:00 24.11.20240831.12228ff 6.11.0-rc5 * 241 current 2024-09-09 00:45:41 24.11.20240831.12228ff 6.11.0-rc5 * 242 current 2024-09-09 00:46:52 24.11.20240831.12228ff 6.11.0-rc5 * 243 current 2024-09-09 00:48:27 24.11.20240831.12228ff 6.11.0-rc5 * 244 current 2024-09-09 00:49:49 24.11.20240831.12228ff 6.11.0-rc5 * 245 current 2024-09-09 00:51:13 24.11.20240831.12228ff 6.11.0-rc5 * 246 current 2024-09-09 00:58:46 24.11.20240831.12228ff 6.11.0-rc5 * 247 current 2024-09-09 01:00:34 24.11.20240831.12228ff 6.11.0-rc5 * 248 current 2024-09-09 01:01:38 24.11.20240831.12228ff 6.11.0-rc5 * 249 current 2024-09-09 01:02:25 24.11.20240831.12228ff 6.11.0-rc5 * 250 current 2024-09-09 01:03:52 24.11.20240831.12228ff 6.11.0-rc5 * 251 current 2024-09-09 01:04:51 24.11.20240831.12228ff 6.11.0-rc5 * 252 current 2024-09-09 01:05:55 24.11.20240831.12228ff 6.11.0-rc5 * 253 current 2024-09-09 01:07:07 24.11.20240831.12228ff 6.11.0-rc5 * 254 current 2024-09-09 01:08:16 24.11.20240831.12228ff 6.11.0-rc5 * 255 current 2024-09-09 01:12:42 24.11.20240831.12228ff 6.11.0-rc5 *
2024-09-08 23:54:31 -04:00
# Edit this configuration file to define what should be installed onconfiguraticonfig
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, inputs, ... }:
let
_v = import ../../common/programs/virt.nix { };
wireshark = import ../../common/programs/wireshark.nix {};
in
{
fileSystems."/mnt/d" = {
device = "/dev/disks/by-uuid/A02A12F22A12C566";
options = [
"nofail"
"uid=1000"
"gid=100"
];
};
fileSystems."/mnt/c" = {
device = "/dev/disks/by-uuid/046C2BB16C2B9D04";
options = [
"nofail"
"uid=1000"
"gid=100"
"noauto"
];
};
fileSystems."/mnt/f" = {
device = "/dev/disks/by-uuid/2E06B65306B61C31";
options = [
"nofail"
"uid=1000"
"gid=100"
];
};
fileSystems."/mnt/h" = {
device = "/dev/disks/by-uuid/E0A4F8C1A4F89B6C";
options = [
"nofail"
"uid=1000"
"gid=100"
];
};
imports =
2024-05-03 18:49:17 -04:00
[
# Include the results of the hardware scan.
./hardware-configuration.nix
inputs.sops-nix.nixosModules.sops
];
sops.defaultSopsFile = ../../secrets.yaml;
sops.defaultSopsFormat = "yaml";
sops.age.keyFile = "/home/meyer/.config/sops/age/keys.txt";
sops.secrets.password.neededForUsers = true;
users.users.meyer = {
isNormalUser = true;
hashedPasswordFile = config.sops.secrets.password.path;
extraGroups = [
"kvm"
"libvirtd"
"wheel" # Enable sudo for the user.
"audio"
"sound"
"video"
"networkmanager"
"input"
"tty"
2024-07-05 11:14:34 -04:00
"plugdev"
];
shell = pkgs.zsh;
};
home-manager = {
extraSpecialArgs = { inherit inputs; };
users = {
"meyer" = import ./home.nix;
};
};
# Use the systemd-boot EFI boot loader.
boot.loader.grub.device = "nodev";
2024-09-17 21:24:54 -04:00
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.grub.efiSupport = true;
boot.loader.grub.useOSProber = true;
boot.loader.grub.efiInstallAsRemovable = true;
# boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2024-07-05 11:14:34 -04:00
# add user to "openrazer" group
hardware.openrazer.enable = true;
hardware.openrazer.users = [ "meyer" ];
hardware.i2c.enable = true;
hardware.xpadneo.enable = true;
hardware.amdgpu.opencl.enable = true;
2024-05-03 18:49:17 -04:00
hardware.bluetooth.enable = true;
services.tailscale.enable = true;
2024-05-03 18:49:17 -04:00
networking.hostName = "nix-desktop-evo4b5"; # Define your hostname.
# Pick only one of the below networking options.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
2024-05-03 18:49:17 -04:00
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Set your time zone.
2024-05-03 18:49:17 -04:00
time.timeZone = "America/New_York";
# Select internationalisation properties.
# i18n.defaultLocale = "en_US.UTF-8";
# console = {
# font = "Lat2-Terminus16";
# keyMap = "us";
# useXkbConfig = true; # use xkb.options in tty.
# };
services = {
teamviewer.enable = true;
avahi.enable = true;
usbmuxd.enable = true;
};
services.desktopManager.plasma6.enable = true;
services.xserver = {
videoDrivers = [ "amdgpu" ];
2024-05-03 18:49:17 -04:00
enable = true;
displayManager.sddm = {
enable = true;
};
};
services.printing.enable = true;
services.printing.drivers = with pkgs; [
hplip
];
virtualisation = _v;
# Enable the X11 windowing system.
# servives.desktopManager.plasma6.enable = true;
2024-05-03 18:49:17 -04:00
# services.desktopManager.plasma6.enable = true;
# Configure keymap in X11
# services.xserver.xkb.layout = "us";
# services.xserver.xkb.options = "eurosign:e,caps:escape";
# Enable CUPS to print documents.
2024-05-03 18:49:17 -04:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Enable sound.
# sound.enable = true;
services.pipewire = {
2024-05-03 18:49:17 -04:00
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
# hardware.pulseaudio.enable = true;
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
# Define a user account. Don't forget to set a password with passwd.
programs = {
inherit wireshark;
};
2024-05-03 18:49:17 -04:00
programs.zsh.enable = true;
programs.steam.enable = true;
programs.steam.extraCompatPackages = with pkgs; [
proton-ge-bin
2024-05-03 18:49:17 -04:00
];
nixpkgs.config.allowUnfree = true;
2024-05-03 18:49:17 -04:00
# networking.nameservers = ["10.0.0.97" "1.1.1.1"];
networking.nameservers = [ "10.0.0.97" ];
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
clinfo
fuse
ifuse
2024-05-03 18:49:17 -04:00
ddcutil
i2c-tools
# python311
# python311Packages.evdev
# python311Packages.xlib
gcc
neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
curl
wget
ripgrep
tldr
gnupg
openssh
pinentry-curses
pinentry
libnotify
file
];
2024-05-03 18:49:17 -04:00
#LD fix
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
230 current 2024-09-08 23:54:23 24.11.20240831.12228ff 6.11.0-rc5 * 231 current 2024-09-08 23:55:54 24.11.20240831.12228ff 6.11.0-rc5 * 232 current 2024-09-08 23:57:58 24.11.20240831.12228ff 6.11.0-rc5 * 233 current 2024-09-09 00:00:25 24.11.20240831.12228ff 6.11.0-rc5 * 234 current 2024-09-09 00:01:40 24.11.20240831.12228ff 6.11.0-rc5 * 235 current 2024-09-09 00:08:17 24.11.20240831.12228ff 6.11.0-rc5 * 236 current 2024-09-09 00:09:22 24.11.20240831.12228ff 6.11.0-rc5 * 237 current 2024-09-09 00:20:19 24.11.20240831.12228ff 6.11.0-rc5 * 238 current 2024-09-09 00:40:29 24.11.20240831.12228ff 6.11.0-rc5 * 239 current 2024-09-09 00:42:12 24.11.20240831.12228ff 6.11.0-rc5 * 240 current 2024-09-09 00:44:00 24.11.20240831.12228ff 6.11.0-rc5 * 241 current 2024-09-09 00:45:41 24.11.20240831.12228ff 6.11.0-rc5 * 242 current 2024-09-09 00:46:52 24.11.20240831.12228ff 6.11.0-rc5 * 243 current 2024-09-09 00:48:27 24.11.20240831.12228ff 6.11.0-rc5 * 244 current 2024-09-09 00:49:49 24.11.20240831.12228ff 6.11.0-rc5 * 245 current 2024-09-09 00:51:13 24.11.20240831.12228ff 6.11.0-rc5 * 246 current 2024-09-09 00:58:46 24.11.20240831.12228ff 6.11.0-rc5 * 247 current 2024-09-09 01:00:34 24.11.20240831.12228ff 6.11.0-rc5 * 248 current 2024-09-09 01:01:38 24.11.20240831.12228ff 6.11.0-rc5 * 249 current 2024-09-09 01:02:25 24.11.20240831.12228ff 6.11.0-rc5 * 250 current 2024-09-09 01:03:52 24.11.20240831.12228ff 6.11.0-rc5 * 251 current 2024-09-09 01:04:51 24.11.20240831.12228ff 6.11.0-rc5 * 252 current 2024-09-09 01:05:55 24.11.20240831.12228ff 6.11.0-rc5 * 253 current 2024-09-09 01:07:07 24.11.20240831.12228ff 6.11.0-rc5 * 254 current 2024-09-09 01:08:16 24.11.20240831.12228ff 6.11.0-rc5 * 255 current 2024-09-09 01:12:42 24.11.20240831.12228ff 6.11.0-rc5 *
2024-09-08 23:54:31 -04:00
libGL
alsa-lib
expat
mesa
libxkbcommon
xorg.libxcb
xorg.libXrandr
xorg.libXfixes
xorg.libXext
xorg.libXdamage
xorg.libXcomposite
xorg.libX11
cairo
pango
gtk3
libdrm
cups
at-spi2-atk
lzo
dbus
nspr
nss
glib
curlWithGnuTls
fuse
fuse3
mimalloc
libstdcxx5
2024-05-03 18:49:17 -04:00
];
programs.ssh.startAgent = true;
programs.ssh.askPassword = pkgs.lib.mkForce "${pkgs.ksshaskpass.out}/bin/ksshaskpass";
programs.gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-gnome3;
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# List services that you want to enable:
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
# system.copySystemConfiguration = true;
# This option defines the first version of NixOS you have installed on this particular machine,
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
#
# Most users should NEVER change this value after the initial install, for any reason,
# even if you've upgraded your system to a new NixOS release.
#
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
# so changing it will NOT upgrade your system.
#
# This value being lower than the current NixOS release does NOT mean your system is
# out of date, out of support, or vulnerable.
#
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
# and migrated your data accordingly.
#
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
system.stateVersion = "23.11"; # Did you read the comment?
}