Adding more features to my desktop

Add nheko for chat
Add podman for development and testing
This commit is contained in:
Greg Hellings
2022-05-04 13:57:19 -05:00
parent 1c19e5300d
commit 2d333a9128
3 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = [ pkgs.element-desktop ]; home.packages = [ pkgs.element-desktop pkgs.nheko ];
} }
+1
View File
@@ -4,6 +4,7 @@
imports = [ imports = [
./boot.nix ./boot.nix
./hardware-configuration.nix ./hardware-configuration.nix
./podman.nix
]; ];
networking.hostName = "jude"; networking.hostName = "jude";
greg.gnome.enable= true; greg.gnome.enable= true;
+8
View File
@@ -0,0 +1,8 @@
{ ... }:
{
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
}