fix: upgrade system, add opentabletdriver, add new mountpoint

main
Muhammad Faizud Daroin 2 years ago
parent 9cca72f7b7
commit 653612830b
  1. 18
      configuration.nix

@ -20,6 +20,11 @@
fsType = "ntfs-3g"; fsType = "ntfs-3g";
options = [ "rw" "uid=1000"]; options = [ "rw" "uid=1000"];
}; };
fileSystems."/mnt/windows-c" =
{ device = "/dev/disk/by-label/windows-c";
fsType = "ntfs-3g";
options = [ "rw" "uid=1000" ];
};
networking.hostName = "nixos"; # Define your hostname. networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
@ -53,7 +58,10 @@
wayland.enable = true; wayland.enable = true;
theme = "${pkgs.sddm-sugar-dark}/share/sddm/themes/sugar-dark"; theme = "${pkgs.sddm-sugar-dark}/share/sddm/themes/sugar-dark";
}; };
defaultSession = "hyprland";
}; };
# services.xserver.windowManager.i3.enable = true;
services.xserver.wacom.enable = true;
# Configure keymap in X11 # Configure keymap in X11
services.xserver.xkb = { services.xserver.xkb = {
@ -69,6 +77,10 @@
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
hardware.xpadneo.enable = true; hardware.xpadneo.enable = true;
hardware.xone.enable = true; hardware.xone.enable = true;
hardware.opentabletdriver = {
enable = true;
daemon.enable = true;
};
security.rtkit.enable = true; security.rtkit.enable = true;
services.pipewire = { services.pipewire = {
enable = true; enable = true;
@ -221,7 +233,7 @@
wofi wofi
dunst hyprpaper dunst hyprpaper
zoxide zoxide
qt5ct libsForQt5.qt5ct
qt6ct qt6ct
networkmanagerapplet networkmanagerapplet
bluez bluez
@ -237,7 +249,7 @@
adwaita-qt6 adwaita-qt6
xdg-desktop-portal-gtk xdg-desktop-portal-gtk
xdg-desktop-portal-hyprland xdg-desktop-portal-hyprland
nemo nemo-with-extensions
gvfs gvfs
hyprcursor hyprcursor
loupe loupe
@ -265,7 +277,7 @@
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
noto-fonts noto-fonts
noto-fonts-cjk noto-fonts-cjk-sans
noto-fonts-extra noto-fonts-extra
cantarell-fonts cantarell-fonts
inter inter

Loading…
Cancel
Save