From fb668e14ed4dbf52f1f70ea53463ee53fe2b4cc7 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Tue, 17 Oct 2023 21:17:10 -0400 Subject: [PATCH] feat(binto): mount ssd on boot --- hosts/binto/configuration.nix | 19 ++++++++++++++----- hosts/binto/hardware-configuration.nix | 7 +++++++ 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/hosts/binto/configuration.nix b/hosts/binto/configuration.nix index 753eb39f..7f63bdf5 100644 --- a/hosts/binto/configuration.nix +++ b/hosts/binto/configuration.nix @@ -1,8 +1,4 @@ -# Edit this configuration file to define what should be installed on -# your system. Help is available in the configuration.nix(5) man page -# and in the NixOS manual (accessible by running ‘nixos-help’). - -{ ... }: { +{ pkgs, ... }: { imports = [ ./hardware-configuration.nix @@ -50,6 +46,19 @@ }; }; + environment.systemPackages = with pkgs; [ + p7zip # for reshade + xclip + ]; + + environment.plasma5.excludePackages = with pkgs.libsForQt5; [ + elisa + oxygen + khelpcenter + konsole + plasma-browser-integration + ]; + users.users.matt = { isNormalUser = true; extraGroups = [ "wheel" "input" "uinput" "adm" "mlocate" "video" "libvirtd" ]; diff --git a/hosts/binto/hardware-configuration.nix b/hosts/binto/hardware-configuration.nix index 7f577320..dc1caa5e 100644 --- a/hosts/binto/hardware-configuration.nix +++ b/hosts/binto/hardware-configuration.nix @@ -8,6 +8,8 @@ v4l2loopback ]; + supportedFilesystems = [ "ntfs" ]; + consoleLogLevel = 0; initrd = { @@ -43,6 +45,11 @@ device = "/dev/disk/by-uuid/1407-A10C"; fsType = "vfat"; }; + + "/run/media/matt/Games" = { + device = "/dev/disk/by-uuid/da62f4ee-d4a6-4fdd-ab12-9c5e131c6f30"; + fsType = "ext4"; + }; }; zramSwap.enable = true;