1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

obs-studio

This commit is contained in:
Stefan Ellmauthaler 2021-12-15 10:36:18 +01:00
parent 5c2eb95513
commit e947d87183
3 changed files with 15 additions and 2 deletions

View File

@ -7,8 +7,7 @@
# machine-specific configuration
(./machine + "/${name}")
# additional programs
./programs/emacs
./programs/aspell.nix
./programs
# home-manager entry-point
./users
# layers

8
programs/default.nix Normal file
View File

@ -0,0 +1,8 @@
{ config, pkgs, lib, ... }:
{
imports = [
./aspell.nix
./emacs
./obs-studio.nix
];
}

6
programs/obs-studio.nix Normal file
View File

@ -0,0 +1,6 @@
{ config, pkgs, lib, ...}:
{
environment.systemPackages = if config.variables.graphical then with pkgs; [
obs-studio
] else [ ] ;
}