2025-12-25

This commit is contained in:
2025-12-25 18:37:54 +09:00
parent 9ac4e308f6
commit 9875eaf309
9 changed files with 82 additions and 48 deletions
+2 -2
View File
@@ -3,8 +3,8 @@
settings = {
monitor = [
"DP-1, 5120x2880@60, 0x0, 2"
"DP-2, 1920x1080@144, 2560x-240, 1, transform, 1"
"HDMI-A-1, 2560x1440@144, -1440x-240, 1, transform, 1"
"DP-2, 2560x1440@144, 2560x0, 1, transform, 0"
"DP-3, 1920x1080@144, -1080x-240, 1, transform, 1"
];
};
};
+1 -1
View File
@@ -51,8 +51,8 @@
libvdpau-va-gl
vulkan-loader
vulkan-validation-layers
amdvlk # Optional: AMD's proprietary Vulkan driver
mesa.opencl # Enables Rusticl (OpenCL) support
rocmPackages.clr.icd
];
};
}
+14 -6
View File
@@ -17,7 +17,6 @@
google-chrome
discord
helvum
superfile
plemoljp
plemoljp-nf
prismlauncher
@@ -28,20 +27,29 @@
inkscape
obsidian
zed-editor
davinci-resolve
# davinci-resolve
kdePackages.filelight
inputs.zen-browser.packages."${system}".default
(deno.overrideAttrs (oldAttrs: {
doCheck = false;
}))
nodejs_24
pnpm
godot
unityhub
nixd
rust-analyzer
beeper
aseprite
zrythm
bambu-studio
orca-slicer
# voicevox-core
# voicevox-engine
# voicevox
vinegar
antigravity
];
services.easyeffects = {
enable = true;
@@ -49,8 +57,8 @@
programs.git = {
enable = true;
userName = "Hare";
userEmail = "kei.hiracchi.0928@gmail.com";
settings.user.name = "Hare";
settings.user.email = "kei.hiracchi.0928@gmail.com";
};
fonts = {
+6 -1
View File
@@ -7,7 +7,7 @@ let
config.boot.kernelPackages = pkgs.linuxPackages_latest;
in
{
system.stateVersion = "25.05";
system.stateVersion = "25.11";
imports = [
./hardware-configuration.nix
@@ -48,6 +48,8 @@ in
bluez-tools
bluetuith
obexftp
fzf
ghq
];
environment.sessionVariables.NIXOS_OZONE_WL = "1";
@@ -76,12 +78,14 @@ in
5173
8000
9001
2222 # crtb server
11434
];
networking.firewall.allowedUDPPorts = [ ];
services.udev.extraRules = ''
ATTRS{idVendor}=="3151", ATTRS{idProduct}=="502d", MODE="0777"
ATTRS{idVendor}=="414", ATTRS{idProduct}=="211a", MODE="0777"
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0660", GROUP="input"
'';
@@ -116,4 +120,5 @@ in
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.kernelModules = [ "amdgpu" ];
}