From 1734f8ab38e54404b0268c25cbbc8f4b3f35b84e Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Sat, 5 Oct 2024 17:19:09 +0300 Subject: [PATCH] Remove unneeded file --- users/functionalhacker/home.nix | 14 +++++++++++++- users/functionalhacker/programs/default.nix | 19 ------------------- 2 files changed, 13 insertions(+), 20 deletions(-) delete mode 100644 users/functionalhacker/programs/default.nix diff --git a/users/functionalhacker/home.nix b/users/functionalhacker/home.nix index ca944cbc..216ea088 100644 --- a/users/functionalhacker/home.nix +++ b/users/functionalhacker/home.nix @@ -2,7 +2,19 @@ { imports = [ - ./programs/default.nix + ./bat.nix + ./eza.nix + ./firefox.nix + ./fzf.nix + ./git.nix + ./gnome.nix + ./gpg.nix + ./neovim.nix + ./pass.nix + ./ripgrep.nix + ./ssh.nix + ./zellij.nix + ./zsh.nix ]; home = { diff --git a/users/functionalhacker/programs/default.nix b/users/functionalhacker/programs/default.nix deleted file mode 100644 index 2bb46dd4..00000000 --- a/users/functionalhacker/programs/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ ... }: - -{ - imports = [ - ./bat.nix - ./eza.nix - ./firefox.nix - ./fzf.nix - ./git.nix - ./gnome.nix - ./gpg.nix - ./neovim.nix - ./pass.nix - ./ripgrep.nix - ./ssh.nix - ./zellij.nix - ./zsh.nix - ]; -}