diff --git a/hosts/kamoshi/configuration.nix b/hosts/kamoshi/configuration.nix index f37c099..c2ee86b 100644 --- a/hosts/kamoshi/configuration.nix +++ b/hosts/kamoshi/configuration.nix @@ -22,7 +22,6 @@ }; time.timeZone = "Europe/Warsaw"; - i18n.defaultLocale = "en_US.UTF-8"; users.users.kamov = { @@ -31,8 +30,6 @@ openssh.authorizedKeys.keyFiles = [ /etc/nixos/ssh/kamov ]; }; - programs.nix-ld.enable = true; - environment.systemPackages = with pkgs; [ git vim @@ -77,6 +74,23 @@ defaults.email = "maciej@kamoshi.org"; }; + virtualisation = { + podman = { + enable = true; + dockerCompat = true; + }; + oci-containers = { + backend = "podman"; + containers = { + kotori = { + image = "kamov/kotori"; + environmentFiles = [ "/etc/nixos/secrets/kotori.env" ]; + autoStart = true; + }; + }; + }; + }; + # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It's perfectly fine and recommended to leave