be247ff3b9
- Extract fonts, fish.enable, openssh.enable to modules/shared/ - Centralize sshKeys in lib/ via specialArgs - Merge nixos/base.nix + locale.nix into nixos/default.nix - Merge home/theme.nix into home/default.nix - Simplify homeManagerConfig, flake packages output - Remove redundant vim/wget from NixOS system packages - Update AGENTS.md to reflect new structure
12 lines
193 B
Nix
12 lines
193 B
Nix
{ pkgs, username, ... }:
|
|
|
|
{
|
|
virtualisation.docker.enable = true;
|
|
|
|
users.users.${username}.extraGroups = [ "docker" ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
docker-compose
|
|
];
|
|
}
|