refactor: move OS configuration files

This commit is contained in:
Oliver Davies 2022-09-27 18:30:42 +01:00
parent c08df2a342
commit ecab676b75
4 changed files with 25 additions and 26 deletions
configuration

View file

@ -0,0 +1,23 @@
{ config, lib, pkgs, ... }:
{
imports = [
../../home-manager/modules/alacritty.nix
../../home-manager/modules/git.nix
../../home-manager/modules/home-manager.nix
../../home-manager/modules/tmux.nix
../../home-manager/modules/zsh.nix
];
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
docker
docker-compose
jetbrains-mono
just
neovim
];
programs.bat.enable = true;
}

View file

@ -0,0 +1,18 @@
{ config, lib, pkgs, ... }:
{
imports = [
../../home-manager/modules/git.nix
../../home-manager/modules/home-manager.nix
../../home-manager/modules/tmux.nix
../../home-manager/modules/zsh.nix
];
home.packages = with pkgs; [
just
neovim
zsh
];
programs.bat.enable = true;
}