mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
modified
This commit is contained in:
parent
957b5f018f
commit
bae44e132e
3 changed files with 29 additions and 30 deletions
|
|
@ -8,29 +8,29 @@ in
|
||||||
{ options.modules.user.gui.corn = { enable = mkEnableOption "Enable Bitcoin client applications"; };
|
{ options.modules.user.gui.corn = { enable = mkEnableOption "Enable Bitcoin client applications"; };
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
trezor-suite
|
#trezor-suite
|
||||||
trezorctl
|
#trezorctl
|
||||||
trezord
|
#trezord
|
||||||
|
|
||||||
sparrow
|
sparrow
|
||||||
];
|
];
|
||||||
|
|
||||||
systemd.user.services = {
|
#systemd.user.services = {
|
||||||
trezord = {
|
# trezord = {
|
||||||
Unit = {
|
# Unit = {
|
||||||
Description = "Trezor Bridge";
|
# Description = "Trezor Bridge";
|
||||||
After = [ "network.target" ];
|
# After = [ "network.target" ];
|
||||||
Wants = [ "network.target" ];
|
# Wants = [ "network.target" ];
|
||||||
PartOf = [ "graphical-session.target" ];
|
# PartOf = [ "graphical-session.target" ];
|
||||||
};
|
# };
|
||||||
Service = {
|
# Service = {
|
||||||
ExecStart = "${pkgs.trezord}/bin/trezord-go";
|
# ExecStart = "${pkgs.trezord}/bin/trezord-go";
|
||||||
Restart = "always";
|
# Restart = "always";
|
||||||
};
|
# };
|
||||||
Install = {
|
# Install = {
|
||||||
WantedBy = [ "default.target" ];
|
# WantedBy = [ "default.target" ];
|
||||||
};
|
# };
|
||||||
};
|
# };
|
||||||
};
|
#};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,17 +7,17 @@ let
|
||||||
in
|
in
|
||||||
{ options.modules.user.gui.fun = { enable = mkEnableOption "Enable entertainment apps"; };
|
{ options.modules.user.gui.fun = { enable = mkEnableOption "Enable entertainment apps"; };
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
programs.obs-studio = {
|
#programs.obs-studio = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
plugins = with pkgs.obs-studio-plugins; [
|
# plugins = with pkgs.obs-studio-plugins; [
|
||||||
wlrobs
|
# wlrobs
|
||||||
obs-pipewire-audio-capture
|
# obs-pipewire-audio-capture
|
||||||
input-overlay
|
# input-overlay
|
||||||
];
|
# ];
|
||||||
};
|
#};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
spotify
|
ytmdesktop
|
||||||
discordo
|
discordo
|
||||||
webcord
|
webcord
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,6 @@ in
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
mdbook
|
mdbook
|
||||||
texlive.combined.scheme-tetex
|
|
||||||
pandoc
|
pandoc
|
||||||
asciidoctor
|
asciidoctor
|
||||||
evince
|
evince
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue