initial bootstrap commit

This commit is contained in:
John Lancaster
2024-09-12 01:54:20 +00:00
commit 164ed126f3

23
configuration.nix Normal file
View File

@@ -0,0 +1,23 @@
{ pkgs, modulesPath, ... }:
{
imports = [
(modulesPath + "/virtualisation/proxmox-lxc.nix")
(import "${builtins.fetchTarball https://github.com/nix-community/home-manager/archive/release-24.05.tar.gz}/nixos")
];
environment.systemPackages = with pkgs; [
bash
wget
git
eza
];
virtualisation.docker.enable = true;
users.users.appdaemon = {
isNormalUser = true;
home = "/srv/appdaemon";
extraGroups = ["docker"];
};
}