nixos-config/common/default.nix

22 lines
No EOL
324 B
Nix
Executable file

{ config, pkgs, lib, ... }:
{
imports = [
./ssh
./boot.nix
./home-manager.nix
./locales.nix
./networking.nix
./nix.nix
./swap.nix
./users.nix
];
environment = {
systemPackages = with pkgs; [ wget ];
# remove default packages
defaultPackages = lib.mkForce [ ];
};
}