dotfiles.nix/home/default.nix

30 lines
644 B
Nix
Raw Permalink Normal View History

2024-07-18 14:16:04 +00:00
{ self, ... }:
{
2023-10-26 02:37:42 +00:00
flake.homeModules = {
common = {
home.enableNixpkgsReleaseCheck = true;
home.stateVersion = "22.05";
imports = [
# misc file configuration
2023-10-26 02:37:42 +00:00
./files.nix
# misc program configuration
./programs.nix
# per-program configurations
2023-10-26 02:37:42 +00:00
./fish.nix
./ghostty.nix
2023-10-26 02:37:42 +00:00
./git.nix
./helix.nix
./pijul.nix
./ssh.nix
2023-10-26 02:37:42 +00:00
./starship.nix
];
};
linux.imports = [ self.homeModules.common ];
darwin.imports = [
self.homeModules.common
./services/dark-mode-notify.nix
./services/tarsnap.nix
];
};
}