2021-06-22 00:47:43 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
psCfg = config.pub-solar;
|
|
|
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
config = {
|
2021-06-22 01:10:54 +00:00
|
|
|
pub-solar.x-os.keyfile = "/etc/nixos/hosts/ryzensun/secrets/keyfile.bin";
|
2021-06-22 00:47:43 +00:00
|
|
|
pub-solar.nextcloud.enable = mkForce false;
|
|
|
|
pub-solar.docker.enable = mkForce false;
|
|
|
|
pub-solar.virtualisation.enable = true;
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|