mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
feat: slim slightly...
This commit is contained in:
parent
743741f976
commit
84d2438c3a
12 changed files with 35 additions and 51 deletions
|
|
@ -19,6 +19,7 @@
|
|||
terminal = 0.8;
|
||||
popups = 0.8;
|
||||
};
|
||||
image = ./stylix.png;
|
||||
fonts = {
|
||||
sansSerif = {
|
||||
name = "Jost";
|
||||
|
|
|
|||
BIN
nixos/common/stylix.png
Normal file
BIN
nixos/common/stylix.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 MiB |
|
|
@ -1,6 +1,9 @@
|
|||
{pkgs, ...}: {
|
||||
{pkgs, config, lib, ...}: let
|
||||
inherit (lib.modules) mkForce;
|
||||
in {
|
||||
programs.regreet = {
|
||||
enable = true;
|
||||
theme = mkForce config.home-manager.users.kat.gtk.theme;
|
||||
};
|
||||
stylix.targets.regreet.enable = true;
|
||||
services.greetd = {
|
||||
|
|
|
|||
|
|
@ -37,20 +37,6 @@
|
|||
vkbasalt
|
||||
mangohud
|
||||
umu-launcher
|
||||
|
||||
# support 32-bit only
|
||||
wine
|
||||
|
||||
# support 64-bit only
|
||||
wine64
|
||||
|
||||
# wine-staging (version with experimental features)
|
||||
wineWowPackages.staging
|
||||
|
||||
# winetricks (all versions)
|
||||
winetricks
|
||||
|
||||
# native wayland support (unstable)
|
||||
wineWowPackages.waylandFull
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
programs.java = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
prismlauncher
|
||||
#prismlauncher
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,9 +35,9 @@
|
|||
*/
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
wlx-overlay-s
|
||||
monado-vulkan-layers
|
||||
bs-manager
|
||||
#wlx-overlay-s
|
||||
#monado-vulkan-layers
|
||||
#bs-manager
|
||||
];
|
||||
|
||||
networking.firewall = {
|
||||
|
|
|
|||
14
nixos/profiles/graphical/obs.nix
Normal file
14
nixos/profiles/graphical/obs.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.obs-studio = {
|
||||
enable = true;
|
||||
enableVirtualCamera = true;
|
||||
plugins = with pkgs.obs-studio-plugins; [
|
||||
#obs-vaapi
|
||||
#obs-tuna
|
||||
#obs-source-clone
|
||||
obs-pipewire-audio-capture
|
||||
#input-overlay
|
||||
obs-vkcapture
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -7,27 +7,8 @@
|
|||
jmtpfs
|
||||
dnsutils
|
||||
usbutils
|
||||
plexamp
|
||||
super-slicer-beta
|
||||
nvidia-vaapi-driver
|
||||
nv-codec-headers-12
|
||||
inputs.push2talk.defaultPackage.${pkgs.system}
|
||||
];
|
||||
programs.obs-studio = {
|
||||
enable = true;
|
||||
enableVirtualCamera = true;
|
||||
package = pkgs.obs-studio.override {
|
||||
cudaSupport = true;
|
||||
};
|
||||
plugins = with pkgs.obs-studio-plugins; [
|
||||
obs-vaapi
|
||||
obs-tuna
|
||||
obs-source-clone
|
||||
obs-pipewire-audio-capture
|
||||
input-overlay
|
||||
obs-vkcapture
|
||||
];
|
||||
};
|
||||
services.udev.packages = [
|
||||
pkgs.android-udev-rules
|
||||
pkgs.zsa-udev-rules
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue