aww yeah imports
This commit is contained in:
parent
1901824037
commit
20389d4f53
24
hosts/_common/home.nix
Normal file
24
hosts/_common/home.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.stateVersion = "22.05";
|
||||||
|
home.sessionVariables = {
|
||||||
|
XDG_CONFIG_HOME = "/Users/tyrel/.config";
|
||||||
|
PAGER = "less -R";
|
||||||
|
EDITOR = "nvim";
|
||||||
|
};
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
bat
|
||||||
|
ctags
|
||||||
|
exa
|
||||||
|
fzf
|
||||||
|
ripgrep
|
||||||
|
wget
|
||||||
|
];
|
||||||
|
|
||||||
|
home.file = {
|
||||||
|
".tmux.conf" = {
|
||||||
|
source = ../../home/tmux.conf;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -1,73 +0,0 @@
|
|||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
home.stateVersion = "22.05";
|
|
||||||
home.sessionVariables = {
|
|
||||||
PAGER = "less -R";
|
|
||||||
EDITOR = "nvim";
|
|
||||||
};
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
bat
|
|
||||||
ctags
|
|
||||||
exa
|
|
||||||
fzf
|
|
||||||
ripgrep
|
|
||||||
wget
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.tmux = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
home.file = {
|
|
||||||
".tmux.conf" = {
|
|
||||||
source = ../../home/tmux.conf;
|
|
||||||
recursive = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.git = {
|
|
||||||
enable = true;
|
|
||||||
includes = [
|
|
||||||
{ path = "~/code/tyrel.dev/dotfiles/home/gitconfig"; }
|
|
||||||
];
|
|
||||||
aliases = {
|
|
||||||
ap = "add -p";
|
|
||||||
};
|
|
||||||
extraConfig = {
|
|
||||||
pull.ff = "only";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.neovim = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
programs.fish = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
programs.htop = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
#xdg.configFile = {
|
|
||||||
# "htop" = {
|
|
||||||
# source = ../../home/config/htop;
|
|
||||||
# recursive = true;
|
|
||||||
# };
|
|
||||||
#};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# XDG CONFIGS
|
|
||||||
xdg.configFile = {
|
|
||||||
"nvim" = {
|
|
||||||
source = ../../home/config/nvim;
|
|
||||||
recursive = true;
|
|
||||||
};
|
|
||||||
"fish" = {
|
|
||||||
source = ../../home/config/fish;
|
|
||||||
recursive = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
32
hosts/_common/programs.nix
Normal file
32
hosts/_common/programs.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
programs.tmux = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
includes = [
|
||||||
|
{ path = "~/code/tyrel.dev/dotfiles/home/gitconfig"; }
|
||||||
|
];
|
||||||
|
aliases = {
|
||||||
|
ap = "add -p";
|
||||||
|
};
|
||||||
|
extraConfig = {
|
||||||
|
pull.ff = "only";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
programs.fish = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
programs.htop = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
14
hosts/_common/xdg.nix
Normal file
14
hosts/_common/xdg.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
xdg.configFile = {
|
||||||
|
"nvim" = {
|
||||||
|
source = ../../home/config/nvim;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
"fish" = {
|
||||||
|
source = ../../home/config/fish;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -3,22 +3,18 @@
|
|||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
home-manager.users.tyrel = { pkgs, ... }: {
|
home-manager.users.tyrel = { pkgs, ... }: {
|
||||||
programs.home-manager.enable = true;
|
# Common Imports
|
||||||
home.stateVersion = "22.05";
|
imports = [
|
||||||
home.sessionVariables = {
|
../_common/home.nix
|
||||||
XDG_CONFIG_HOME = "/Users/tyrel/.config";
|
../_common/programs.nix
|
||||||
};
|
../_common/xdg.nix
|
||||||
|
];
|
||||||
# Load Common Packages
|
|
||||||
common = pkgs.callPackage ../_common/homepkgs.nix {};
|
|
||||||
|
|
||||||
# XDG CONFIGS
|
# XDG CONFIGS
|
||||||
xdg.configFile = {
|
xdg.configFile."karabiner" = {
|
||||||
"karabiner" = {
|
|
||||||
source = ../../home/config/karabiner;
|
source = ../../home/config/karabiner;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}; # -- HomeManager
|
}; # -- HomeManager
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user