make sure desktops apps only install on desktops

This commit is contained in:
Sean Buckley 2024-10-18 00:10:30 -04:00
parent c2fa267fac
commit 63aefa9edf
2 changed files with 42 additions and 38 deletions

View file

@ -1,7 +1,7 @@
{ lib, pkgs, ... }: { config, lib, pkgs, ... }:
let let
config = (pkgs.formats.toml { }).generate "alacritty.toml" aconfig = (pkgs.formats.toml { }).generate "alacritty.toml"
{ {
env.TERM = "xterm-256color"; env.TERM = "xterm-256color";
font.size = 12; font.size = 12;
@ -32,9 +32,11 @@ let
in in
{ {
environment.etc."xdg/alacritty.toml".source = config; config = lib.mkIf (config.sconfig.desktop.enable) {
environment.etc."xdg/alacritty.toml".source = aconfig;
environment.systemPackages = [ environment.systemPackages = [
(lib.hiPrio notify-fix) (lib.hiPrio notify-fix)
pkgs.alacritty pkgs.alacritty
]; ];
};
} }

View file

@ -1,5 +1,6 @@
{ pkgs, ... }: { config, lib, pkgs, ... }:
{ {
config = lib.mkIf (config.sconfig.desktop.enable) {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(vscode-with-extensions.override { (vscode-with-extensions.override {
vscodeExtensions = with pkgs.vscode-extensions; [ vscodeExtensions = with pkgs.vscode-extensions; [
@ -32,4 +33,5 @@
"update.mode" = "none"; "update.mode" = "none";
} }
); );
};
} }