18 lines
532 B
Nix
18 lines
532 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
with lib;
|
||
|
let
|
||
|
psCfg = config.pub-solar;
|
||
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
||
|
in
|
||
|
{
|
||
|
imports = [
|
||
|
./virtualisation
|
||
|
];
|
||
|
|
||
|
config.home-manager.users."${psCfg.user.name}".xdg.configFile = mkIf psCfg.sway.enable {
|
||
|
"sway/config.d/autostart.conf".source = ./.config/sway/config.d/autostart.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;
|
||
|
};
|
||
|
}
|