inital attempt at getting lxc working. Currently home-manager is broken.

This commit is contained in:
Gabe Venberg 2024-06-04 23:33:32 -05:00
parent 6f5169947a
commit 7d1ae316bb
6 changed files with 120 additions and 16 deletions

View file

@ -3,6 +3,7 @@
pkgs,
inputs,
outputs,
lib,
...
}: {
nix = {
@ -24,6 +25,16 @@
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
time.timeZone = lib.mkDefault "America/Chicago";
# Select internationalisation properties.
i18n.defaultLocale = lib.mkDefault "en_US.UTF-8";
# Configure keymap in X11
services.xserver = {
xkb.layout = lib.mkDefault "us";
xkb.variant = lib.mkDefault "";
};
# packages that should be on every system.
environment.systemPackages = with pkgs; [
neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.