mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
refactor: replaced all with with builtins.attrValues
This commit is contained in:
parent
f87d465a2c
commit
b08a7694a5
12 changed files with 236 additions and 153 deletions
|
@ -65,69 +65,91 @@ let
|
|||
in {
|
||||
flake.homeModules = {
|
||||
desktop = {
|
||||
imports = with modules; [
|
||||
brave
|
||||
firefox
|
||||
misc-android
|
||||
misc-desktop
|
||||
misc-internet
|
||||
qbittorrent
|
||||
vscode
|
||||
];
|
||||
imports = builtins.attrValues {
|
||||
inherit
|
||||
(modules)
|
||||
brave
|
||||
firefox
|
||||
misc-android
|
||||
misc-desktop
|
||||
misc-internet
|
||||
qbittorrent
|
||||
vscode
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
entertainment = {
|
||||
imports = with modules; [
|
||||
freetube
|
||||
misc-entertainment
|
||||
mpv
|
||||
steam
|
||||
];
|
||||
imports = builtins.attrValues {
|
||||
inherit
|
||||
(modules)
|
||||
freetube
|
||||
misc-entertainment
|
||||
mpv
|
||||
steam
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
productionArt = {
|
||||
imports = with modules; [
|
||||
misc-productionArt
|
||||
];
|
||||
imports = builtins.attrValues {
|
||||
inherit
|
||||
(modules)
|
||||
misc-productionArt
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
productionAudio = {
|
||||
imports = with modules; [
|
||||
misc-productionAudio
|
||||
];
|
||||
imports = builtins.attrValues {
|
||||
inherit
|
||||
(modules)
|
||||
misc-productionAudio
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
productionVideo = {
|
||||
imports = with modules; [
|
||||
misc-productionVideo
|
||||
obs-studio
|
||||
];
|
||||
imports = builtins.attrValues {
|
||||
inherit
|
||||
(modules)
|
||||
misc-productionVideo
|
||||
obs-studio
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
productionWriting = {
|
||||
imports = with modules; [
|
||||
misc-productionWriting
|
||||
];
|
||||
imports = builtins.attrValues {
|
||||
inherit
|
||||
(modules)
|
||||
misc-productionWriting
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
shared = {
|
||||
imports = with modules; [
|
||||
bat
|
||||
bottom
|
||||
direnv
|
||||
git
|
||||
helix
|
||||
home-manager
|
||||
lazygit
|
||||
misc-commandLine
|
||||
misc-virtualization
|
||||
nushell
|
||||
starship
|
||||
wezterm
|
||||
# yazi
|
||||
zellij
|
||||
zoxide
|
||||
];
|
||||
imports = builtins.attrValues {
|
||||
inherit
|
||||
(modules)
|
||||
bat
|
||||
bottom
|
||||
direnv
|
||||
git
|
||||
helix
|
||||
home-manager
|
||||
lazygit
|
||||
misc-commandLine
|
||||
misc-virtualization
|
||||
nushell
|
||||
starship
|
||||
wezterm
|
||||
# yazi
|
||||
|
||||
zellij
|
||||
zoxide
|
||||
;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue