Oliver Davies
a7556575ac
After using it as a daily driver from the last week or so, I'm switching to Zellij. https://zellij.dev
34 lines
681 B
Nix
34 lines
681 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
username,
|
|
self,
|
|
}:
|
|
let
|
|
pkgsUnstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.system};
|
|
in
|
|
{
|
|
home.username = "${username}";
|
|
home.homeDirectory = "/home/${username}";
|
|
|
|
home.stateVersion = "22.05";
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
imports = [
|
|
(import ./modules/git.nix { inherit inputs pkgs pkgsUnstable; })
|
|
(import ./modules/neovim.nix { inherit inputs; })
|
|
./modules/bat.nix
|
|
./modules/bin.nix
|
|
./modules/direnv.nix
|
|
./modules/fzf.nix
|
|
./modules/lsd.nix
|
|
./modules/pet.nix
|
|
./modules/phpactor.nix
|
|
./modules/ripgrep.nix
|
|
./modules/syncthing.nix
|
|
./modules/zellij.nix
|
|
./modules/zsh.nix
|
|
];
|
|
}
|