27 lines
971 B
Nix
27 lines
971 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
with lib;
|
||
|
let
|
||
|
psCfg = config.pub-solar;
|
||
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
||
|
in
|
||
|
{
|
||
|
config = {
|
||
|
home-manager = pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] {
|
||
|
home.sessionVariables = {
|
||
|
DOCKER_BUILDKIT = "1";
|
||
|
};
|
||
|
# Custom device sway configs
|
||
|
xdg.configFile = mkIf psCfg.sway.enable {
|
||
|
"sway/config.d/10-applications.conf".source = ./.config/sway/config.d/applications.conf;
|
||
|
"sway/config.d/autostart.conf".source = ./.config/sway/config.d/autostart.conf;
|
||
|
"sway/config.d/10-custom-keybindings.conf".source = ./.config/sway/config.d/custom-keybindings.conf;
|
||
|
"sway/config.d/input-defaults.conf".source = ./.config/sway/config.d/input-defaults.conf;
|
||
|
"sway/config.d/screens.conf".source = ./.config/sway/config.d/screens.conf;
|
||
|
};
|
||
|
};
|
||
|
networking.hosts = {
|
||
|
"127.0.0.1" = [ "virtrex.test" "expo.test" "proxy.test" ];
|
||
|
};
|
||
|
};
|
||
|
}
|