Add wlr-randr, drop obsolete user envs

This commit is contained in:
Hendrik Sokolowski 2022-05-10 23:07:20 +02:00
parent bcbc1440b8
commit afecf5b555
2 changed files with 1 additions and 13 deletions

View file

@ -6,7 +6,6 @@ let
in
{
imports = [
./session-variables.nix
];
services.fwupd.enable = true;
@ -26,6 +25,7 @@ in
sysstat
tig
thunderbird
wlr-randr
];
programs.ssh = {

View file

@ -1,12 +0,0 @@
{ config, pkgs, ... }:
let
psCfg = config.pub-solar;
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
in
{
home-manager = pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] {
home.sessionVariables = {
"SSH_AUTH_SOCK" = "\${XDG_RUNTIME_DIR}/ssh-agent";
};
};
}