28 lines
374 B
Nix
28 lines
374 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
profile = import ./profile.nix;
|
|
dotfiles_interstellar = pkgs.fetchgit {
|
|
url = "https://git.nichkara.eu/dotfiles/interstellar.git";
|
|
rev = "9864939b912dbb419e6e654970528fe1cee23a1a";
|
|
sha256 = "";
|
|
};
|
|
in
|
|
{
|
|
home.packages = with pkgs; [
|
|
|
|
# Lemmy
|
|
interstellar
|
|
|
|
# PeerTube
|
|
|
|
# Pixelfed
|
|
fedistar
|
|
|
|
];
|
|
}
|