split everything into modules and update nixpkgs

This commit is contained in:
aditya
2026-05-14 00:29:17 +05:30
parent 0e2136c3a0
commit cc2380eec1
18 changed files with 270 additions and 81 deletions
+10
View File
@@ -0,0 +1,10 @@
{
programs = {
firefox.enable = true;
nix-ld.enable = true;
sway = {
enable = true;
wrapperFeatures.gtk = true;
};
};
}
+6
View File
@@ -0,0 +1,6 @@
{
imports = [
./common.nix
./obs-studio.nix
];
}
+13
View File
@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
enableVirtualCamera = true;
plugins = with pkgs.obs-studio-plugins; [
obs-pipewire-audio-capture
obs-vaapi
obs-plugin-countdown
];
};
}