testig HM as module - try 2

This commit is contained in:
2023-10-18 19:54:25 +00:00
parent 0639fa9777
commit c555bbc310

View File

@@ -1,10 +1,10 @@
{ inputs, lib, pkgs, config, outputs, ... }:
{
imports = [
"${inputs.vscode-server}/modules/vscode-server/home.nix"
];
# ++ (builtins.attrValues outputs.homeManagerModules);
# imports = [
# "${inputs.vscode-server}/modules/vscode-server/home.nix"
# ];
# # ++ (builtins.attrValues outputs.homeManagerModules);
@@ -34,21 +34,21 @@ config = {
nixpkgs = {
overlays = builtins.attrValues outputs.overlays;
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
};
# nixpkgs = {
# overlays = builtins.attrValues outputs.overlays;
# config = {
# allowUnfree = true;
# allowUnfreePredicate = (_: true);
# };
# };
nix = {
package = lib.mkDefault pkgs.nix;
settings = {
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
warn-dirty = false;
};
};
# nix = {
# package = lib.mkDefault pkgs.nix;
# settings = {
# experimental-features = [ "nix-command" "flakes" "repl-flake" ];
# warn-dirty = false;
# };
# };
##VSCode
services.vscode-server.enable = true;