works again, mostly done, now we can start with server
This commit is contained in:
parent
784f214fb7
commit
270e1a0be4
38 changed files with 623 additions and 381 deletions
|
|
@ -16,16 +16,43 @@
|
|||
};
|
||||
|
||||
config = {
|
||||
environment.systemPackages = with pkgs; [
|
||||
(lib.mkIf (config.apps.misc.obsidian.enable) obsidian)
|
||||
(lib.mkIf (config.apps.misc.bitwarden.enable) rbw (
|
||||
lib.mkIf (config.desktop.shell.rofi.enable) pinentry-curses rofi-rbw
|
||||
))
|
||||
(lib.mkIf (config.apps.misc.blender.enable) blender)
|
||||
libsecret
|
||||
gcr_4
|
||||
pass
|
||||
];
|
||||
environment.systemPackages =
|
||||
with pkgs;
|
||||
[
|
||||
libsecret
|
||||
gcr_4
|
||||
pass
|
||||
]
|
||||
++ (
|
||||
if (config.apps.misc.obsidian.enable) then
|
||||
|
||||
[ obsidian ]
|
||||
else
|
||||
[ ]
|
||||
)
|
||||
++ (
|
||||
if (config.apps.misc.bitwarden.enable) then
|
||||
|
||||
[ rbw ]
|
||||
++ (
|
||||
if (config.desktop.shell.rofi.enable) then
|
||||
[
|
||||
pinentry-curses
|
||||
rofi-rbw
|
||||
]
|
||||
else
|
||||
[ ]
|
||||
)
|
||||
else
|
||||
[ ]
|
||||
)
|
||||
++ (
|
||||
if (config.apps.misc.blender.enable) then
|
||||
|
||||
[ blender ]
|
||||
else
|
||||
[ ]
|
||||
);
|
||||
programs = {
|
||||
seahorse.enable = true;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue