add adam site

This commit is contained in:
Kopatz
2024-05-24 16:04:38 +02:00
parent f929bbe487
commit d268730104
8 changed files with 226 additions and 27 deletions

View File

@@ -1,9 +1,9 @@
{ pkgs, config, ...}:
{ pkgs, config, lib, ...}:
{
imports = [
./audio.nix
./code.nix
./cosmic.nix
./emulators.nix
./gamemode.nix
./games.nix
@@ -15,7 +15,8 @@
./obs.nix
./openrgb.nix
./plasma.nix
#./stylix.nix
#./cosmic.nix
./shared.nix
./stylix.nix
];
}

View File

@@ -14,9 +14,9 @@ in
nix.registry.nixpkgs.flake = pkgsVersion;
nix.nixPath = ["nixpkgs=flake:nixpkgs"];
nixpkgs.config.allowUnfree = true;
home-manager.users.${config.mainUser.name}.home.sessionVariables = {
NIX_PATH = "nixpkgs=flake:nixpkgs$\{NIX_PATH:+:$NIX_PATH}";
NIXPKGS_ALLOW_UNFREE = "1";
};
##home-manager.users.${config.mainUser.name}.home.sessionVariables = {
## NIX_PATH = "nixpkgs=flake:nixpkgs$\{NIX_PATH:+:$NIX_PATH}";
## NIXPKGS_ALLOW_UNFREE = "1";
##};
};
}