diff --git a/modules/sway/sway_conf.nix b/modules/sway/sway_conf.nix index 2ea88e0..29813fd 100644 --- a/modules/sway/sway_conf.nix +++ b/modules/sway/sway_conf.nix @@ -74,6 +74,7 @@ xdg-utils zsh # Fonts + ghostscript ] config.swaywm.systemPackages @@ -103,6 +104,10 @@ services.gvfs.enable = true; # thunar functionalities services.openssh.enable = true; services.dbus.enable = true; +services.printing.enable = true; +services.printing.drivers = [ pkgs.brlaser ]; + + services.pipewire = { enable = true; alsa.enable = true; diff --git a/nixos/desktop_configuration.nix b/nixos/desktop_configuration.nix index 7e95f23..1757568 100644 --- a/nixos/desktop_configuration.nix +++ b/nixos/desktop_configuration.nix @@ -104,7 +104,7 @@ in # # Photo / Video # - davinci-resolve-studio + #davinci-resolve-studio imv mpv gimp diff --git a/nixos/hardware-configuration.nix b/nixos/hardware-configuration.nix index 31e746e..bea3109 100644 --- a/nixos/hardware-configuration.nix +++ b/nixos/hardware-configuration.nix @@ -8,26 +8,21 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "uas" "usb_storage" "sd_mod" ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/e48c53a4-6e7d-4b12-a46e-a408956268ea"; + { device = "/dev/disk/by-label/NIXROOT"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/82B2-9D40"; + { device = "/dev/disk/by-label/NIXBOOT"; fsType = "vfat"; }; - fileSystems."/home/nate/Games" = - { device = "/dev/disk/by-uuid/d66b7920-2c29-400a-be51-0b3890ea63db"; - fsType = "ext4"; - }; - swapDevices = [ ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking @@ -35,9 +30,8 @@ # still possible to use this option, but it's recommended to use it in conjunction # with explicit per-interface declarations with `networking.interfaces..useDHCP`. networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp1s0f0u2u1u4.useDHCP = lib.mkDefault true; - # networking.interfaces.enp3s0.useDHCP = lib.mkDefault true; - # networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true; + # networking.interfaces.eno1.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp11s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;