mirror of
https://github.com/ryanccn/flake.git
synced 2026-01-27 04:06:28 +01:00
31 lines
602 B
Nix
31 lines
602 B
Nix
{...}: {
|
|
security.pam.enableSudoTouchIdAuth = true;
|
|
|
|
environment.customIcons = {
|
|
enable = true;
|
|
icons = [
|
|
{
|
|
path = "/Applications/Notion.app";
|
|
icon = ../../icons/notion.icns;
|
|
}
|
|
{
|
|
path = "/Applications/Things.app";
|
|
icon = ../../icons/things.icns;
|
|
}
|
|
{
|
|
path = "/Applications/Obsidian.app";
|
|
icon = ../../icons/obsidian.icns;
|
|
}
|
|
];
|
|
};
|
|
|
|
programs.fish.enable = true;
|
|
programs.zsh.enable = true;
|
|
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
};
|
|
|
|
system.stateVersion = 4;
|
|
}
|