30 lines
595 B
Nix
30 lines
595 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.home-manager-darwin.darwinModules.home-manager
|
|
];
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
networking.hostName = "hypnos";
|
|
time.timeZone = "Asia/Shanghai";
|
|
|
|
programs.fish.enable = true;
|
|
|
|
users.users.origami = {
|
|
home = "/Users/origami";
|
|
};
|
|
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
backupFileExtension = "bak";
|
|
users.origami = import ../../home/hosts/hypnos.nix;
|
|
};
|
|
|
|
nixpkgs.config.allowUnfreePredicate = _: true;
|
|
|
|
system.stateVersion = 5;
|
|
}
|