adds editors category
parent
90c9f87eda
commit
449e93c093
|
@ -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 = {
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./vim.nix ./emacs.nix ./vscode.nix ];
|
||||
}
|
|
@ -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 New Issue