34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ 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 = {
|
|
pub-solar.x-os.keyfile = "/etc/nixos/hosts/con/secrets/keyfile.bin";
|
|
pub-solar.nextcloud.enable = mkForce false;
|
|
|
|
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" ];
|
|
};
|
|
};
|
|
}
|