mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2025-06-20 10:54:36 +02:00
small adjustments for desktop
This commit is contained in:
parent
3c84e06ef1
commit
c23877a1ef
3 changed files with 12 additions and 2 deletions
home-manager
|
@ -31,6 +31,7 @@ with lib;
|
||||||
./../programs/hstr.nix
|
./../programs/hstr.nix
|
||||||
./../programs/thefuck.nix
|
./../programs/thefuck.nix
|
||||||
./../programs/ssh.nix
|
./../programs/ssh.nix
|
||||||
|
./../programs/zed.nix
|
||||||
./../../nix.nix
|
./../../nix.nix
|
||||||
./packages.nix
|
./packages.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -122,6 +122,7 @@ in
|
||||||
++ (
|
++ (
|
||||||
if (config.machine.isGraphical && !config.machine.isGeneric) then
|
if (config.machine.isGraphical && !config.machine.isGeneric) then
|
||||||
[
|
[
|
||||||
|
jetbrains.pycharm-professional
|
||||||
# jetbrains.webstorm
|
# jetbrains.webstorm
|
||||||
# jetbrains.phpstorm
|
# jetbrains.phpstorm
|
||||||
# jetbrains.rust-rover
|
# jetbrains.rust-rover
|
||||||
|
@ -148,7 +149,7 @@ in
|
||||||
quickgui
|
quickgui
|
||||||
trilium-desktop
|
trilium-desktop
|
||||||
anki
|
anki
|
||||||
# inputs.muse-sounds-manager.packages.x86_64-linux.muse-sounds-manager
|
muse-sounds-manager
|
||||||
jetbrains-toolbox
|
jetbrains-toolbox
|
||||||
mumble
|
mumble
|
||||||
prusa-slicer
|
prusa-slicer
|
||||||
|
@ -160,11 +161,12 @@ in
|
||||||
syncthingtray
|
syncthingtray
|
||||||
reaper
|
reaper
|
||||||
yabridge
|
yabridge
|
||||||
inputs.suyu.packages.x86_64-linux.suyu
|
torzu
|
||||||
inputs.nix-alien.packages.x86_64-linux.nix-alien
|
inputs.nix-alien.packages.x86_64-linux.nix-alien
|
||||||
kdePackages.kdenlive
|
kdePackages.kdenlive
|
||||||
audacity
|
audacity
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
telegram-desktop
|
||||||
]
|
]
|
||||||
else
|
else
|
||||||
[ ]
|
[ ]
|
||||||
|
|
7
home-manager/programs/zed.nix
Normal file
7
home-manager/programs/zed.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, config, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.zed-editor = {
|
||||||
|
enable = if (config.machine.isGraphical && !config.machine.isGeneric) then true else false;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue