remove: viewnior

This commit is contained in:
DACHXY 2025-04-22 13:18:53 +08:00
parent b4bd51410c
commit 135df24a36
5 changed files with 12 additions and 15 deletions

View file

@ -5,7 +5,7 @@ in
map (dev: dev // modulesConfig) [ map (dev: dev // modulesConfig) [
# Monitor 1 # Monitor 1
{ {
output = "DP-2"; output = "DP-3";
layer = "top"; layer = "top";
exclusive = true; exclusive = true;
passthrough = false; passthrough = false;
@ -39,7 +39,7 @@ map (dev: dev // modulesConfig) [
} }
# Monitor 2 # Monitor 2
{ {
output = "DP-3"; output = "DP-2";
layer = "top"; layer = "top";
exclusive = true; exclusive = true;
height = 54; height = 54;

View file

@ -11,7 +11,6 @@
"float, class:confirmreset" "float, class:confirmreset"
"float, title:Open File" "float, title:Open File"
"float, title:branchdialog" "float, title:branchdialog"
"float, class:viewnior"
"float, class:pavucontrol-qt" "float, class:pavucontrol-qt"
"float, class:pavucontrol" "float, class:pavucontrol"
"float, class:file-roller" "float, class:file-roller"

View file

@ -35,7 +35,6 @@
qbittorrent qbittorrent
# Utils # Utils
viewnior
cava cava
papirus-folders papirus-folders
inkscape inkscape

View file

@ -1,7 +1,3 @@
{
...
}:
{ {
security.pki.certificates = [ security.pki.certificates = [
'' ''
@ -25,4 +21,5 @@
-----END CERTIFICATE----- -----END CERTIFICATE-----
'' ''
]; ];
} }

View file

@ -1,14 +1,16 @@
{ pkgs, ... }: { pkgs, ... }:
let let
davinciResolve = pkgs.callPackage ../../pkgs/davinci-resolve { };
in in
{ {
environment.systemPackages = [ environment.systemPackages = with pkgs; [
davinciResolve davinci-resolve
]; ];
hardware.graphics.extraPackages = with pkgs; [ hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
intel-compute-runtime intel-compute-runtime
rocmPackages.clr.icd rocmPackages.clr.icd
]; ];
};
} }