treewide: cleanup some unused modules/programs
This commit is contained in:
parent
f90330ef48
commit
d4dba203e3
6 changed files with 2 additions and 50 deletions
|
@ -45,7 +45,6 @@
|
||||||
eid.enable = true;
|
eid.enable = true;
|
||||||
element.enable = true;
|
element.enable = true;
|
||||||
hledger.enable = true;
|
hledger.enable = true;
|
||||||
obs.enable = true;
|
|
||||||
torrents.enable = true;
|
torrents.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./minecraft
|
./minecraft
|
||||||
./mumble
|
|
||||||
./particles
|
./particles
|
||||||
./steam
|
./steam
|
||||||
./tetris
|
./tetris
|
||||||
|
@ -17,7 +16,6 @@
|
||||||
config = lib.mkIf config.chvp.games.enable {
|
config = lib.mkIf config.chvp.games.enable {
|
||||||
chvp.games = {
|
chvp.games = {
|
||||||
minecraft.client = lib.mkDefault false;
|
minecraft.client = lib.mkDefault false;
|
||||||
mumble.enable = lib.mkDefault true;
|
|
||||||
steam.enable = lib.mkDefault true;
|
steam.enable = lib.mkDefault true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
options.chvp.games.mumble.enable = lib.mkOption {
|
|
||||||
default = false;
|
|
||||||
example = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
config = lib.mkIf config.chvp.games.mumble.enable {
|
|
||||||
chvp.base.zfs.homeLinks = [
|
|
||||||
{ path = ".config/Mumble"; type = "data"; }
|
|
||||||
{ path = ".local/share/Mumble"; type = "data"; }
|
|
||||||
];
|
|
||||||
|
|
||||||
home-manager.users.charlotte = { ... }: {
|
|
||||||
home.packages = with pkgs; [ mumble ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -5,7 +5,6 @@
|
||||||
./calibre
|
./calibre
|
||||||
./eid
|
./eid
|
||||||
./element
|
./element
|
||||||
./obs
|
|
||||||
./torrents
|
./torrents
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
options.chvp.programs.obs.enable = lib.mkOption {
|
|
||||||
default = false;
|
|
||||||
example = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
config = lib.mkIf config.chvp.programs.obs.enable {
|
|
||||||
boot.kernelModules = [ "v4l2loopback" ];
|
|
||||||
boot.extraModulePackages = [ pkgs.linuxPackages.v4l2loopback ];
|
|
||||||
boot.extraModprobeConfig = ''
|
|
||||||
options v4l2loopback video_nr=9 card_label="obs"
|
|
||||||
'';
|
|
||||||
|
|
||||||
chvp.base.zfs.homeLinks = [
|
|
||||||
{ path = ".config/obs-studio"; type = "data"; }
|
|
||||||
];
|
|
||||||
|
|
||||||
home-manager.users.charlotte = { pkgs, ... }: {
|
|
||||||
programs.obs-studio = {
|
|
||||||
enable = true;
|
|
||||||
plugins = [ pkgs.obs-studio-plugins.wlrobs ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -94,6 +94,8 @@
|
||||||
:mode "\\(?:Brewfile\\|Capfile\\|Gemfile\\(?:\\.[a-zA-Z0-9._-]+\\)?\\|[rR]akefile\\)\\'"
|
:mode "\\(?:Brewfile\\|Capfile\\|Gemfile\\(?:\\.[a-zA-Z0-9._-]+\\)?\\|[rR]akefile\\)\\'"
|
||||||
:custom
|
:custom
|
||||||
(ruby-insert-encoding-magic-comment nil "Don't insert encoding magic comment")
|
(ruby-insert-encoding-magic-comment nil "Don't insert encoding magic comment")
|
||||||
|
:config
|
||||||
|
(add-to-list 'eglot-server-programs `(ruby-mode . ("ruby-lsp")))
|
||||||
)
|
)
|
||||||
|
|
||||||
;; Rust language support
|
;; Rust language support
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue