nixos-config/common/default.nix
wo2wz a1196deb25 remove all default packages,
add btop configs,
update ssh local ips,
add multiple programs to niri config and add more keybinds
2025-08-01 00:36:00 -04:00

20 lines
No EOL
309 B
Nix
Executable file

{ config, pkgs, lib, ... }:
{
imports = [
./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 [ ];
};
}