tangled
alpha
login
or
join now
encode42.dev
/
nixos
0
fork
atom
Personal-use NixOS configuration
0
fork
atom
overview
issues
pulls
pipelines
Move Modrinth App to a shared package
encode42.dev
1 month ago
0e14bf32
36a27952
+8
-3
3 changed files
expand all
collapse all
unified
split
homes
career
desktop
default.nix
packages.nix
shared
desktop
modrinth.nix
+1
homes/career/desktop/default.nix
···
8
8
9
9
(import ./firefox.nix { inherit homeDesktop; })
10
10
11
11
+
(flakeRoot + /homes/shared/desktop/modrinth.nix)
11
12
(flakeRoot + /homes/shared/desktop/prismlauncher.nix)
12
13
13
14
./packages.nix
-3
homes/career/desktop/packages.nix
···
4
4
home.packages = with pkgs; [
5
5
slack
6
6
notion-app-enhanced
7
7
-
8
8
-
# Awaiting the merge of #466573
9
9
-
#modrinth-app
10
7
];
11
8
}
+7
homes/shared/desktop/modrinth.nix
···
1
1
+
{ pkgs-unstable, ... }:
2
2
+
3
3
+
{
4
4
+
home.packages = with pkgs-unstable; [
5
5
+
modrinth-app
6
6
+
];
7
7
+
}