nix-home/home/mac-home.nix

32 lines
881 B
Nix
Raw Normal View History

2021-10-21 16:49:00 +00:00
{ config, pkgs, ... }:
{
imports = [ ./common.nix ];
2022-05-31 16:45:33 +00:00
2021-10-21 16:49:00 +00:00
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "nki";
home.homeDirectory = "/Users/nki";
# Additional packages to be used only on this MacBook.
home.packages = with pkgs; [
2022-05-31 16:45:33 +00:00
anki-bin
2021-10-21 16:49:00 +00:00
];
# Additional settings for programs
2022-05-31 16:45:33 +00:00
programs.fish.shellAliases = { };
2021-10-21 16:49:00 +00:00
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "21.11";
}