2021-05-30 19:33:09 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
psCfg = config.pub-solar;
|
|
|
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
2021-06-01 08:55:02 +00:00
|
|
|
./configuration.nix
|
2021-05-30 19:33:09 +00:00
|
|
|
./virtualisation
|
|
|
|
];
|
|
|
|
|
|
|
|
config = {
|
2021-06-01 08:55:02 +00:00
|
|
|
pub-solar.x-os.keyfile = "/etc/nixos/hosts/chocolatebar/secrets/keyfile.bin";
|
|
|
|
|
|
|
|
pub-solar.virtualisation.isolateGPU = "rx550x";
|
2021-05-30 19:33:09 +00:00
|
|
|
|
|
|
|
hardware.cpu.amd.updateMicrocode = true;
|
|
|
|
|
|
|
|
hardware.opengl.extraPackages = with pkgs; [
|
|
|
|
rocm-opencl-icd
|
|
|
|
rocm-opencl-runtime
|
|
|
|
];
|
|
|
|
|
|
|
|
home-manager.users."${psCfg.user.name}".xdg.configFile = mkIf psCfg.sway.enable {
|
|
|
|
"sway/config.d/10-autostart.conf".source = ./.config/sway/config.d/autostart.conf;
|
|
|
|
"sway/config.d/10-input-defaults.conf".source = ./.config/sway/config.d/input-defaults.conf;
|
|
|
|
"sway/config.d/10-screens.conf".source = ./.config/sway/config.d/screens.conf;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|