adds editors category
This commit is contained in:
parent
90c9f87eda
commit
449e93c093
7 changed files with 17 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./rofi ./kitty.nix ./zathura.nix ./spotify.nix ./vscode.nix ];
|
||||
imports = [ ./rofi ./kitty.nix ./zathura.nix ./spotify.nix ];
|
||||
home-manager.users.moritz.home.packages = with pkgs; [
|
||||
neofetch
|
||||
keepassxc
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./apps ./cli ./desktop ./services ./cachix.nix ];
|
||||
imports = [ ./apps ./cli ./desktop ./editors ./services ./cachix.nix ];
|
||||
|
||||
# USERS
|
||||
users.users.moritz = {
|
||||
|
|
5
modules/editors/default.nix
Normal file
5
modules/editors/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./vim.nix ./emacs.nix ./vscode.nix ];
|
||||
}
|
9
modules/editors/vim.nix
Normal file
9
modules/editors/vim.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.moritz.programs.neovim = {
|
||||
enable = true;
|
||||
vimAlias = true;
|
||||
vimdiffAlias = true;
|
||||
};
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./dunst ./emacs ./agenix.nix ./diskstation ./picom.nix ];
|
||||
imports = [ ./dunst ./agenix.nix ./diskstation ./picom.nix ];
|
||||
|
||||
home-manager.users.moritz.services = { kdeconnect.enable = true; };
|
||||
|
||||
|
|
Loading…
Reference in a new issue