feat: lmstudio
This commit is contained in:
@@ -68,6 +68,7 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
users.groups.libvirtd.members = [ "allen" ];
|
users.groups.libvirtd.members = [ "allen" ];
|
||||||
|
users.groups.plugdev.members = [ "allen" ];
|
||||||
|
|
||||||
programs.firefox.enable = true;
|
programs.firefox.enable = true;
|
||||||
|
|
||||||
@@ -77,6 +78,7 @@ in
|
|||||||
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||||
pkg-config
|
pkg-config
|
||||||
wget
|
wget
|
||||||
|
ntfs3g
|
||||||
openssl
|
openssl
|
||||||
gnome-tweaks
|
gnome-tweaks
|
||||||
xf86_input_wacom
|
xf86_input_wacom
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
|
boot.kernelParams = [ "modprobe.blacklist=dvb_usb_rtl28xxu" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
@@ -26,6 +27,12 @@
|
|||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = [ "fmask=0077" "dmask=0077" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/mnt/share" =
|
||||||
|
{ device = "/dev/disk/by-uuid/0D608CA53E06CE7A";
|
||||||
|
fsType = "ntfs-3g";
|
||||||
|
options = [ "rw" "uid=1000" "gid=100" "umask=022" ];
|
||||||
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
@@ -35,6 +42,8 @@
|
|||||||
networking.useDHCP = lib.mkDefault true;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
|
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
|
||||||
|
|
||||||
|
services.udev.packages = [ pkgs.rtl-sdr ];
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,6 +10,11 @@
|
|||||||
padding.x = 50;
|
padding.x = 50;
|
||||||
padding.y = 50;
|
padding.y = 50;
|
||||||
};
|
};
|
||||||
|
colors = {
|
||||||
|
primary = {
|
||||||
|
background = "#040404";
|
||||||
|
};
|
||||||
|
};
|
||||||
scrolling.multiplier = 5;
|
scrolling.multiplier = 5;
|
||||||
selection.save_to_clipboard = true;
|
selection.save_to_clipboard = true;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
with pkgs; [
|
with pkgs; [
|
||||||
libreoffice
|
libreoffice
|
||||||
|
lmstudio
|
||||||
waybar
|
waybar
|
||||||
sdrpp
|
sdrpp
|
||||||
gqrx
|
gqrx
|
||||||
|
|||||||
Reference in New Issue
Block a user