does it get better
This commit is contained in:
parent
80951705f1
commit
1768c3349a
3 changed files with 22 additions and 0 deletions
|
@ -23,6 +23,7 @@
|
||||||
};
|
};
|
||||||
apps = {
|
apps = {
|
||||||
keepassxc.enable = true;
|
keepassxc.enable = true;
|
||||||
|
nicotineplus.enable = true;
|
||||||
};
|
};
|
||||||
chat = {
|
chat = {
|
||||||
discord.enable = true;
|
discord.enable = true;
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./keepassxc
|
./keepassxc
|
||||||
|
./nicotineplus
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
20
modules/desktop/apps/nicotineplus/default.nix
Normal file
20
modules/desktop/apps/nicotineplus/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# ITS A FILE SHARING THING
|
||||||
|
# NOT A GOD DAMN ADDICTION
|
||||||
|
# IM NOT ADDICTED TO MUSIC
|
||||||
|
# I SWEAR
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.desktop.apps.nicotineplus;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.desktop.apps.nicotineplus = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
nicotine-plus
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue