nix-configurations/hosts/common/base/default.nix

12 lines
206 B
Nix
Raw Normal View History

2022-12-30 12:05:46 +00:00
{ lib, inputs, pkgs, ... }:
{
imports = [
inputs.home-manager.nixosModules.home-manager
];
users.defaultUserShell = pkgs.fish;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
}