os/hosts/harrison/harrison.nix

22 lines
424 B
Nix
Raw Normal View History

2022-04-25 21:27:33 +00:00
{ config, pkgs, lib, ... }:
with lib;
2022-08-13 09:12:00 +00:00
with pkgs;
2022-04-25 21:27:33 +00:00
let
psCfg = config.pub-solar;
in
{
imports = [
./configuration.nix
];
2022-05-23 21:33:27 +00:00
config = {
2022-08-13 09:12:00 +00:00
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2022-05-23 21:33:27 +00:00
home-manager.users."${psCfg.user.name}".xdg.configFile = mkIf psCfg.sway.enable {
"sway/config.d/10-screens.conf".source = ./.config/sway/config.d/screens.conf;
};
2022-08-13 09:12:00 +00:00
services.teamviewer.enable = true;
2022-05-23 21:33:27 +00:00
};
2022-04-25 21:27:33 +00:00
}