41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ config, desktop, inputs, pkgs, self, username, ... }:
|
|
|
|
let
|
|
desktop-config = import ./desktop.nix { inherit config inputs pkgs; };
|
|
shared-config = import ../../shared/home-manager.nix { inherit inputs pkgs self username; };
|
|
shared-packages = import ../../shared/home-manager-packages.nix { inherit inputs pkgs; };
|
|
in
|
|
{
|
|
imports = if desktop then [ desktop-config shared-config ] else [ shared-config ];
|
|
|
|
home.packages = shared-packages ++ pkgs.lib.optionals desktop [
|
|
pkgs.discord
|
|
pkgs.gimp
|
|
pkgs.kdenlive
|
|
pkgs.meslo-lg
|
|
pkgs.obs-studio
|
|
pkgs.okular
|
|
pkgs.pamixer
|
|
pkgs.pass
|
|
pkgs.pavucontrol
|
|
pkgs.pinentry
|
|
pkgs.slack
|
|
pkgs.via
|
|
pkgs.vlc
|
|
pkgs.xsel
|
|
pkgs.xcape
|
|
pkgs.zoom-us
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
EXA_COLORS = "uu=38;5;255:gu=38;5;255:ur=38;5;255:uw=38;5;255:ue=38;5;255:wx=38;5;255:gr=38;5;250:gw=38;5;250:gx=38;5;250:tr=38;5;255:tw=38;5;255:tx=38;5;255:da=38;5;250:sn=32:sb=0:di=38;5;105";
|
|
LANG = "en_GB.UTF-8";
|
|
LC_ALL = "en_GB.UTF-8";
|
|
LC_CTYPE = "en_GB.UTF-8";
|
|
PATH = "$PATH:./vendor/bin:./node_modules/.bin";
|
|
PULUMI_SKIP_UPDATE_CHECK = "true";
|
|
RIPGREP_CONFIG_PATH = "$HOME/.config/ripgrep/config";
|
|
};
|
|
}
|