Compare commits

...

3 commits

Author SHA1 Message Date
a0e9cd1650
remove discord font override, pnevma -> banana-blueberry 2026-02-27 14:20:50 -05:00
4323c00b71
update niri 2026-02-26 19:42:08 -05:00
2a7afa0a60
add obs 2026-02-26 16:34:23 -05:00
4 changed files with 18 additions and 10 deletions

6
flake.lock generated
View file

@ -302,11 +302,11 @@
"niri-blur": { "niri-blur": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1771672342, "lastModified": 1771749270,
"narHash": "sha256-52CxMRH2kVGpsPBiZM+996b6i/3XkmOrySm5zqwWc+o=", "narHash": "sha256-ZJCM1XOHIdud6Jfpl4jYQOzbOJId9wmXT+hNJ1IPBIY=",
"owner": "niri-wm", "owner": "niri-wm",
"repo": "niri", "repo": "niri",
"rev": "86f42d1ed9ab787c52ace073e0b3218e26530d25", "rev": "734d86ec061d15d1980c5b940b2f4dc9aee80cf5",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -47,11 +47,6 @@ in
home.file.".config/vesktop/settings/quickCss.css" = with config.scheme.withHashtag; { home.file.".config/vesktop/settings/quickCss.css" = with config.scheme.withHashtag; {
text = '' text = ''
* {
font-family: "${config.userOptions.fontSans.name}" !important;
font-size: ${toString config.userOptions.fontSans.size}px;
}
:root { :root {
--base00: ${base00}; --base00: ${base00};
--base01: ${base01}; --base01: ${base01};

View file

@ -5,7 +5,7 @@
}: }:
{ {
colors = { colors = {
scheme = "pnevma"; scheme = "banana-blueberry";
accent = "base09"; accent = "base09";
}; };

View file

@ -40,6 +40,12 @@
]; ];
consoleLogLevel = 0; consoleLogLevel = 0;
initrd.verbose = false; initrd.verbose = false;
extraModulePackages = with config.boot.kernelPackages; [
v4l2loopback
];
extraModprobeConfig = ''
options v4l2loopback devices=1 video_nr=1 card_label="OBS Cam" exclusive_caps=1
'';
}; };
programs = { programs = {
@ -83,7 +89,6 @@
} }
]; ];
}; };
}; };
# aerothemeplasma = { # aerothemeplasma = {
@ -120,9 +125,17 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
git git
firefoxpwa firefoxpwa
(wrapOBS {
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-backgroundremoval
obs-pipewire-audio-capture
];
})
]; ];
security.pam.services.niri.enableGnomeKeyring = config.services.gnome.gnome-keyring.enable; security.pam.services.niri.enableGnomeKeyring = config.services.gnome.gnome-keyring.enable;
security.polkit.enable = true;
networking.firewall.enable = false; networking.firewall.enable = false;
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
documentation.man.enable = true; documentation.man.enable = true;