.
This commit is contained in:
parent
59a1fbaf0f
commit
ac3dac322d
78 changed files with 893 additions and 802 deletions
17
modules/home/application/default.nix
Normal file
17
modules/home/application/default.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
imports = [
|
||||
./bitwarden
|
||||
./chrome
|
||||
./discord
|
||||
./ladybird
|
||||
./matrix
|
||||
./obs
|
||||
./onlyoffice
|
||||
./signal
|
||||
./steam
|
||||
./studio
|
||||
./teamspeak
|
||||
./thunderbird
|
||||
./zen
|
||||
];
|
||||
}
|
||||
|
|
@ -3,7 +3,7 @@ let
|
|||
inherit (lib) mkIf mkEnableOption;
|
||||
|
||||
cfg = config.${namespace}.application.studio;
|
||||
studioPackage = pkgs.callPackage (repoRoot + "/packages/studio/default.nix") {
|
||||
studioPackage = pkgs.callPackage (repoRoot + "/packages/studio/package.nix") {
|
||||
inherit erosanixLib;
|
||||
};
|
||||
in
|
||||
|
|
|
|||
|
|
@ -5,6 +5,18 @@ let
|
|||
|
||||
cfg = config.${namespace}.defaults;
|
||||
in {
|
||||
imports = [
|
||||
./application
|
||||
./desktop
|
||||
./development
|
||||
./editor
|
||||
./game
|
||||
./home-manager
|
||||
./shell
|
||||
./terminal
|
||||
./themes
|
||||
];
|
||||
|
||||
options.${namespace}.defaults = {
|
||||
editor = mkOption {
|
||||
type = enum [ "nano" "nvim" "zed" ];
|
||||
|
|
|
|||
5
modules/home/desktop/default.nix
Normal file
5
modules/home/desktop/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./plasma
|
||||
];
|
||||
}
|
||||
7
modules/home/development/default.nix
Normal file
7
modules/home/development/default.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./dotnet
|
||||
./javascript
|
||||
./rust
|
||||
];
|
||||
}
|
||||
7
modules/home/editor/default.nix
Normal file
7
modules/home/editor/default.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./nano
|
||||
./nvim
|
||||
./zed
|
||||
];
|
||||
}
|
||||
5
modules/home/game/default.nix
Normal file
5
modules/home/game/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./minecraft
|
||||
];
|
||||
}
|
||||
|
|
@ -5,6 +5,11 @@ let
|
|||
cfg = config.${namespace}.shell;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./toolset
|
||||
./zsh
|
||||
];
|
||||
|
||||
options.${namespace}.shell = {
|
||||
corePkgs.enable = mkEnableOption "core shell packages";
|
||||
};
|
||||
|
|
|
|||
16
modules/home/shell/toolset/default.nix
Normal file
16
modules/home/shell/toolset/default.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
imports = [
|
||||
./bat
|
||||
./btop
|
||||
./eza
|
||||
./fzf
|
||||
./git
|
||||
./gnugpg
|
||||
./just
|
||||
./starship
|
||||
./tmux
|
||||
./yazi
|
||||
./zellij
|
||||
./zoxide
|
||||
];
|
||||
}
|
||||
6
modules/home/terminal/default.nix
Normal file
6
modules/home/terminal/default.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./alacritty
|
||||
./ghostty
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue