pin firefox and inellij to gnome dash

This commit is contained in:
Daniel Langbein 2024-02-04 14:51:54 +01:00
parent 274d24fe58
commit 8aa4fb89b4
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 29 additions and 8 deletions

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
users.users.yoda = {
packages = with pkgs; [
@ -7,11 +7,20 @@
};
# Touch input with Firefox under X11.
environment.sessionVariables = {
environment.sessionVariables = lib.mkIf (! config.services.xserver.displayManager.gdm.wayland) {
MOZ_USE_XINPUT2 = "1";
};
# Required for dconf.settings
programs.dconf.enable = true;
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
dconf.settings = {
"org/gnome/shell" = {
favorite-apps = ["firefox.desktop"];
};
};
programs.firefox = {
enable = true;
profiles.default = {

View File

@ -1,4 +1,11 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
let
version = (
if (config.nixpkgs.config.allowUnfree)
then "idea-ultimate"
else "idea-community"
);
in
{
# Integrated Development Environment (IDE).
@ -15,11 +22,16 @@
users.users.yoda = {
packages = with pkgs; [
(
if (config.nixpkgs.config.allowUnfree)
then jetbrains.idea-ultimate
else jetbrains.idea-community
)
jetbrains."${version}"
];
};
programs.dconf.enable = true;
home-manager.users.yoda = { osConfig, config, pkgs, lib, ... }: {
dconf.settings = {
"org/gnome/shell" = {
favorite-apps = ["${version}.desktop"];
};
};
};
}