trying to add git

This commit is contained in:
John Lancaster
2024-12-13 19:46:25 -06:00
parent e9b5287547
commit e5f6e1e2c5

View File

@@ -10,21 +10,26 @@
let
inherit (self) outputs;
nixosSystem = args.nixpkgs.lib.nixosSystem;
pkgs = args.nixpkgs.legacyPackages.x86_64-linux;
in
{
nixosConfigurations.lxc = nixosSystem {
system = "x86_64-linux";
packages = with args.nixpkgs.legacyPackages.x86_64-linux; [
git
];
# specialArgs = {
specialArgs = {
inherit pkgs;
# inherit systemSettings;
# inherit userSettings;
# };
};
modules = [
(args.nixpkgs + "/nixos/modules/virtualisation/proxmox-lxc.nix")
args.vscode-server.nixosModules.default
({ ... }: { services.vscode-server.enable = true; })
({ pkgs, ... }: {
nix.settings.experimental-features = [ "nix-command" "flakes" ];
services.vscode-server.enable = true;
environment.systemPackages = with pkgs; [
git
];
})
# ./configuration.nix
];
};