some reorganizing
This commit is contained in:
parent
df9e8ae8bf
commit
113e015135
182 changed files with 443 additions and 449 deletions
11
home/profiles/editors/emacs.nix
Normal file
11
home/profiles/editors/emacs.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{pkgs, ...}: {
|
||||
programs.emacs = {
|
||||
enable = true;
|
||||
package = pkgs.emacs29-pgtk;
|
||||
extraPackages = e: [
|
||||
e.vterm
|
||||
pkgs.texlive.combined.scheme-medium
|
||||
pkgs.sqlite
|
||||
];
|
||||
};
|
||||
}
|
3
home/profiles/editors/jetbrains/android-studio.nix
Normal file
3
home/profiles/editors/jetbrains/android-studio.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [android-studio];
|
||||
}
|
3
home/profiles/editors/jetbrains/rider.nix
Normal file
3
home/profiles/editors/jetbrains/rider.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs.jetbrains; [rider];
|
||||
}
|
8
home/profiles/editors/nvim.nix
Normal file
8
home/profiles/editors/nvim.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
home.packages = [inputs.nvim-nix.packages.${pkgs.system}.default];
|
||||
home.sessionVariables.EDITOR = "nvim";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue