mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
54 lines
919 B
Nix
54 lines
919 B
Nix
{
|
|
inputs,
|
|
self,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./modules/nix.nix
|
|
./modules/packages.nix
|
|
./modules/homebrew.nix
|
|
./modules/fish.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.bash.enable = true;
|
|
programs.fish.enable = true;
|
|
programs.zsh.enable = true;
|
|
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
|
|
extraSpecialArgs = {
|
|
inherit self inputs;
|
|
};
|
|
|
|
users.ryanccn = import ./home;
|
|
};
|
|
|
|
users.users.ryanccn = {
|
|
home = "/Users/ryanccn";
|
|
};
|
|
|
|
system.stateVersion = 4;
|
|
}
|