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

View file

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

View file

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

View file

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

View file

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