Add delfin with configuration and finamp
This commit is contained in:
@@ -1,6 +1,10 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./media/jellyfin.nix
|
||||||
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
calibre
|
calibre
|
||||||
kdePackages.okular
|
kdePackages.okular
|
||||||
|
|||||||
28
system-environment/media/jellyfin.nix
Normal file
28
system-environment/media/jellyfin.nix
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
{ pkgs, lib, ... }:
|
||||||
|
let
|
||||||
|
dotfiles_delfin = pkgs.fetchgit {
|
||||||
|
url = "https://git.nichkara.eu/dotfiles/delfin";
|
||||||
|
rev = "cfff63c725eb8a2a5dc4872ab48932c382e55184";
|
||||||
|
sha256 = "sha256-AujtjitTDJaUIWQioPhyb5+F1M1vF3we8mXK5cIA9G0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
dotfiles_finamp = pkgs.fetchgit {
|
||||||
|
url = "https://git.nichkara.eu/dotfiles/finamp";
|
||||||
|
rev = "cd3d5d8a97f9fbc1cc8a69fc9e570dfcf669dce7";
|
||||||
|
sha256 = "sha256-FTpGumhxY6ChUXqnykO+aSJiFD4A80W0eqx7hXS9Iwc=";
|
||||||
|
};
|
||||||
|
|
||||||
|
profile = import ../../profile.nix;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
finamp
|
||||||
|
delfin
|
||||||
|
];
|
||||||
|
|
||||||
|
xdg.configFile."delfin" = {
|
||||||
|
source = dotfiles_delfin;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user