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 = {
|
||||
keepassxc.enable = true;
|
||||
nicotineplus.enable = true;
|
||||
};
|
||||
chat = {
|
||||
discord.enable = true;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./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