refactor: move nvf into home-editor.nix
This commit is contained in:
parent
e727f25804
commit
329516eda4
3 changed files with 19 additions and 5 deletions
7
modules/home-editor.nix
Normal file
7
modules/home-editor.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{self, pkgs, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = [
|
||||||
|
self.packages.${pkgs.stdenv.system}.nvf
|
||||||
|
];
|
||||||
|
}
|
7
modules/home-terminal.nix
Normal file
7
modules/home-terminal.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
kitty # default terminal emulator for hyprland
|
||||||
|
];
|
||||||
|
}
|
|
@ -2,10 +2,11 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../modules/home-git.nix
|
../../modules/home-git.nix # git specific configs
|
||||||
../../modules/home-tmux.nix
|
../../modules/home-tmux.nix # tmux specific configs (might move this)
|
||||||
../../modules/home-sh.nix
|
../../modules/home-sh.nix # bash and other shell specific configs
|
||||||
../../modules/home-wm.nix
|
../../modules/home-wm.nix # window manager configs
|
||||||
|
../../modules/home-editor.nix # editor specific configs
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
@ -13,7 +14,6 @@
|
||||||
homeDirectory = "/home/rafiq";
|
homeDirectory = "/home/rafiq";
|
||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
self.packages.${pkgs.stdenv.system}.nvf
|
|
||||||
pkgs.kitty
|
pkgs.kitty
|
||||||
pkgs.fastfetch
|
pkgs.fastfetch
|
||||||
pkgs.wl-clipboard
|
pkgs.wl-clipboard
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue