mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
17 lines
396 B
Nix
17 lines
396 B
Nix
{ self, lib, ... }:
|
|
let
|
|
importNames = lib.swarselsystems.readNix "profiles/nixos/common";
|
|
profilesPath = "${self}/profiles";
|
|
in
|
|
{
|
|
imports = lib.swarselsystems.mkImports importNames "profiles/nixos/common" ++ [
|
|
"${profilesPath}/home/common/sharedsetup.nix"
|
|
];
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"jitsi-meet-1.0.8043"
|
|
"electron-29.4.6"
|
|
"SDL_ttf-2.0.11"
|
|
];
|
|
|
|
}
|