refactor: move OS configuration files
This commit is contained in:
parent
c08df2a342
commit
ecab676b75
4 changed files with 25 additions and 26 deletions
configuration
23
configuration/pop-os/default.nix
Normal file
23
configuration/pop-os/default.nix
Normal 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;
|
||||
}
|
18
configuration/wsl2/default.nix
Normal file
18
configuration/wsl2/default.nix
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue