diff options
author | Franck Cuny <franck@fcuny.net> | 2023-05-01 19:28:33 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-05-01 19:28:33 -0700 |
commit | d4dcdf6fffa28beb7d328ee08e3c4e1bb40e5ebd (patch) | |
tree | a5e7001bc9e0a30bef85f28f45620a3d4f251e5a /profiles | |
parent | home/packages: rewrite scripts to use writeShellApplication (diff) | |
download | world-d4dcdf6fffa28beb7d328ee08e3c4e1bb40e5ebd.tar.gz |
profiles/workstation: reduce the number of moving parts
There's too many moving parts and layers of abstractions, for no benefits: I only have to manage 3-4 machines. Going to create profiles, move things there, and stop with the `enable` pattern.
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/workstation.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/profiles/workstation.nix b/profiles/workstation.nix new file mode 100644 index 0000000..484d110 --- /dev/null +++ b/profiles/workstation.nix @@ -0,0 +1,6 @@ +{ pkgs, config, lib, ... }: +{ + virtualisation.docker.enable = false; + virtualisation.podman.enable = true; + virtualisation.podman.dockerCompat = true; +} |