dot.nix/host/caenus/home/default.nix
Chris Toph 9e5c6b8292 Normalized caenus to configs changes
and updated according to its running config
2025-01-13 23:40:56 -05:00

25 lines
429 B
Nix

{ pkgs, ... }:
{
# Module imports
imports = [
# Common Modules
../../../common/home
../../../common/git
];
home.packages = with pkgs; [
fastfetch
fish
fishPlugins.grc
fishPlugins.tide
grc
];
home.file = {
git.dotfiles.source = builtins.fetchGit {
url = "https://github.com/TophC7/dotfiles/tree/hosts";
rev = "adecf063251176159fe9edbe0f6dbba432630de4";
};
};
}