Update ~8/26/24
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ pkgs, config, ... }:
|
||||
{ pkgs, config, ... }:
|
||||
{
|
||||
home.packages = [ pkgs.firefox ];
|
||||
}
|
||||
|
||||
6
user/apps/graphics/gimp.nix
Normal file
6
user/apps/graphics/gimp.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
gimp
|
||||
];
|
||||
}
|
||||
6
user/apps/graphics/inkscape.nix
Normal file
6
user/apps/graphics/inkscape.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
inkscape
|
||||
];
|
||||
}
|
||||
20
user/apps/office/texlive.nix
Normal file
20
user/apps/office/texlive.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
mytex = pkgs.texliveMedium.withPackages
|
||||
(ps: [
|
||||
ps.biber
|
||||
ps.biblatex
|
||||
ps.bibtex
|
||||
ps.import
|
||||
ps.subfiles
|
||||
ps.wrapfig
|
||||
ps.collection-langjapanese
|
||||
]);
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
mytex
|
||||
pandoc
|
||||
qpdf
|
||||
];
|
||||
}
|
||||
6
user/apps/thunderbird.nix
Normal file
6
user/apps/thunderbird.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
thunderbird
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user