Skip to content

Commit

Permalink
Add minimal Home Manager config
Browse files Browse the repository at this point in the history
  • Loading branch information
DanNixon committed Dec 24, 2023
1 parent 9f55b79 commit 1e4280b
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
43 changes: 43 additions & 0 deletions configurations/minimal/home-manager/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
inputs,
outputs,
}: let
pkgs-unstable = inputs.nixpkgs-unstable.legacyPackages.x86_64-linux;
in
inputs.home-manager.lib.homeManagerConfiguration {
pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = {inherit inputs outputs pkgs-unstable;};

modules = [
inputs.base16.homeManagerModule
../../../modules/home-manager/base.nix
../../../modules/home-manager/terminal_environment/git.nix
../../../modules/home-manager/terminal_environment/neovim
../../../modules/home-manager/terminal_environment/shell.nix
../../../modules/home-manager/terminal_environment/tmux.nix
../../../modules/home-manager/terminal_environment/zsh.nix

({pkgs, ...} :{
home.packages = with pkgs; [
# System tools
bottom
lm_sensors
neofetch
progress

# Disk/filesystem tools
dua
smartmontools
tree

# Networking tools
bmon
];

# home = {
# username = "dan";
# homeDirectory = "/home/dan";
# };
})
];
}
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
generic = import ./configurations/generic/home-manager {inherit inputs outputs;};
"dan@kawashiro" = import ./configurations/kawashiro/home-manager {inherit inputs outputs;};
"dan@maya" = import ./configurations/maya/home-manager {inherit inputs outputs;};
minimal = import ./configurations/minimal/home-manager {inherit inputs outputs;};
"dan@yukari" = import ./configurations/yukari/home-manager {inherit inputs outputs;};
"dan@yuyuko" = import ./configurations/yuyuko/home-manager {inherit inputs outputs;};
};
Expand Down

0 comments on commit 1e4280b

Please sign in to comment.