fix: gui apps not included in options
This commit is contained in:
parent
30ab9882f0
commit
31e91d6bf3
|
@ -121,7 +121,7 @@
|
|||
./system
|
||||
{
|
||||
home-manager.extraSpecialArgs = specialArgs;
|
||||
home-manager.users.tigor = import ./home;
|
||||
home-manager.users.homeserver = import ./home;
|
||||
}
|
||||
] ++ commonModules;
|
||||
specialArgs = specialArgs;
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
docker-compose-language-service
|
||||
emmet-ls
|
||||
# golangci-lint-langserver
|
||||
mongodb-compass
|
||||
silicon # For code screenshots
|
||||
|
||||
###### Golang development tools ######
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
{ config, unstable, pkgs, ... }:
|
||||
{ config, unstable, pkgs, lib, ... }:
|
||||
let
|
||||
cfg = config.profile.neovide;
|
||||
in
|
||||
{
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = [
|
||||
unstable.neovide
|
||||
];
|
||||
|
@ -24,4 +28,5 @@
|
|||
vsync = true;
|
||||
wsl = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue