nixos/darwin/hosts/noe-air/default.nix
2023-12-11 18:18:41 -05:00

13 lines
256 B
Nix

{ pkgs, ... }: {
imports = [
../../common.nix
];
programs.fish.enable = true;
users.users.noe = (import ../../user.nix) "noe" // {
shell = pkgs.fish;
};
home-manager.users.noe = import ../../../home-manager/noe/hosts/noe-air.nix;
}