nix fmt
This commit is contained in:
parent
1d868976b8
commit
07fb22e47e
8 changed files with 48 additions and 38 deletions
|
|
@ -1,11 +1,14 @@
|
|||
# Starting image for LXC containers on Proxmox
|
||||
|
||||
{ config, pkgs, modulesPath, ... }:
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
modulesPath,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [
|
||||
(modulesPath + "/virtualisation/proxmox-lxc.nix")
|
||||
];
|
||||
imports = [ (modulesPath + "/virtualisation/proxmox-lxc.nix") ];
|
||||
|
||||
users = {
|
||||
users.root = {
|
||||
|
|
@ -16,7 +19,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
nix.settings.experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
|
||||
# Auto update
|
||||
system.autoUpgrade.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue