Compare commits
No commits in common. "35ba974c1b27d54a1b1348412829c440b5a361f3" and "7d15904e7c2a5274287ce480c8ffefa0e6fdea94" have entirely different histories.
35ba974c1b
...
7d15904e7c
5 changed files with 0 additions and 25 deletions
|
@ -42,7 +42,6 @@ in
|
|||
};
|
||||
|
||||
my.gaming.enable = true;
|
||||
my.nix-ld.enable = true;
|
||||
|
||||
boot.extraModulePackages = with config.boot.kernelPackages; [ zenpower ];
|
||||
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
./locale.nix
|
||||
./users.nix
|
||||
./containers.nix
|
||||
./nix-ld.nix
|
||||
./network.nix
|
||||
../settings
|
||||
];
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
|
||||
config = lib.mkIf config.my.containers.enable {
|
||||
services.flatpak.enable = true;
|
||||
programs.appimage.enable = true;
|
||||
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.my.nix-ld.enable = lib.mkEnableOption { };
|
||||
|
||||
config = lib.mkIf (config.my.nix-ld.enable) {
|
||||
programs.nix-ld = {
|
||||
enable = true;
|
||||
libraries =
|
||||
with pkgs;
|
||||
# run appimages + linux games natively
|
||||
[ fuse ]
|
||||
++ (appimageTools.defaultFhsEnvArgs.multiPkgs pkgs)
|
||||
++ (appimageTools.defaultFhsEnvArgs.targetPkgs pkgs);
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,7 +1,6 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
options.my = {
|
||||
nix-ld.enable = lib.mkEnableOption { };
|
||||
android.enable = lib.mkEnableOption { };
|
||||
media-packages.enable = lib.mkEnableOption { };
|
||||
containers.enable = lib.mkEnableOption { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue