29 lines
594 B
Nix
29 lines
594 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib;
|
|
with pkgs;
|
|
let
|
|
psCfg = config.pub-solar;
|
|
in
|
|
{
|
|
imports = [
|
|
./configuration.nix
|
|
];
|
|
|
|
config = {
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
|
|
|
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;
|
|
};
|
|
|
|
pub-solar.paranoia.enable = true;
|
|
pub-solar.nextcloud.enable = true;
|
|
|
|
programs.ausweisapp.enable = true;
|
|
services.pcscd = {
|
|
enable = true;
|
|
plugins = [ pkgs.pcsc-cyberjack ];
|
|
};
|
|
};
|
|
}
|