Compare commits

..

No commits in common. "04cfebada4d9cb7459cb467cfaee7aa279a2b2b5" and "74a438777c5addc61784f4cc2aeb40154e5eb958" have entirely different histories.

5 changed files with 32 additions and 52 deletions

View file

@ -24,8 +24,6 @@
sops.enable = true;
mpv.enable = true;
atuin.enable = true;
obs.enable = true;
chromium.enable = true;
};
david = {
@ -38,6 +36,13 @@
home.homeDirectory = "/home/${unixName}";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-source-record
input-overlay
];
};
home.packages = with pkgs; [
tealdeer
@ -69,4 +74,13 @@
viu
just
];
programs.chromium = {
enable = true;
commandLineArgs = [
"--ozone-platform=wayland"
"--enable-wayland-ime=true"
"--enable-features=UseOzonePlatform"
];
};
}

View file

@ -33,8 +33,6 @@
kvm.enable = true;
atuin.enable = true;
thunderbird.enable = true;
obs.enable = true;
chromium.enable = true;
};
david = {
@ -47,6 +45,13 @@
home.homeDirectory = "/home/${unixName}";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-source-record
input-overlay
];
};
home.packages = with pkgs; [
tealdeer
ripgrep
@ -77,4 +82,13 @@
viu
just
];
programs.chromium = {
enable = true;
commandLineArgs = [
"--ozone-platform=wayland"
"--enable-wayland-ime=true"
"--enable-features=UseOzonePlatform"
];
};
}

View file

@ -1,21 +0,0 @@
{ lib, config, ... }:
let
cfg = config.youthlic.programs.chromium;
in
{
options = {
youthlic.programs.chromium = {
enable = lib.mkEnableOption "chromium";
};
};
config = lib.mkIf cfg.enable {
programs.chromium = {
enable = true;
commandLineArgs = [
"--ozone-platform=wayland"
"--enable-wayland-ime=true"
"--enable-features=UseOzonePlatform"
];
};
};
}

View file

@ -11,7 +11,6 @@
++ [
./nix.nix
./helix
./chromium.nix
./gpg
./git.nix
./shell
@ -30,7 +29,6 @@
./swaync.nix
./swaylock.nix
./thunderbird.nix
./obs.nix
];
options = {

View file

@ -1,25 +0,0 @@
{
pkgs,
config,
lib,
...
}:
let
cfg = config.youthlic.programs.obs;
in
{
options = {
youthlic.programs.obs = {
enable = lib.mkEnableOption "obs";
};
};
config = lib.mkIf cfg.enable {
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-source-record
input-overlay
];
};
};
}