feat(binto): mount ssd on boot

This commit is contained in:
matt1432 2023-10-17 21:17:10 -04:00
parent 4698da1049
commit fb668e14ed
2 changed files with 21 additions and 5 deletions

View file

@ -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" ];

View file

@ -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;