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, ... }:
|
{ 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; [
|
home-manager.users.moritz.home.packages = with pkgs; [
|
||||||
neofetch
|
neofetch
|
||||||
keepassxc
|
keepassxc
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ lib, pkgs, ... }:
|
{ lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ./apps ./cli ./desktop ./services ./cachix.nix ];
|
imports = [ ./apps ./cli ./desktop ./editors ./services ./cachix.nix ];
|
||||||
|
|
||||||
# USERS
|
# USERS
|
||||||
users.users.moritz = {
|
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, ... }:
|
{ 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; };
|
home-manager.users.moritz.services = { kdeconnect.enable = true; };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue