summaryrefslogtreecommitdiff
path: root/users/bee
diff options
context:
space:
mode:
authorbeeb5k <beebeeb5k@gmail.com>2026-06-02 00:06:57 +0530
committerbeeb5k <beebeeb5k@gmail.com>2026-06-02 00:06:57 +0530
commit2519d3fc4f3df771fc90f356064ec6ca4a17203a (patch)
tree2f12ea61429cd2e277dcdcebba857ccf96a8087d /users/bee
parentdfc891bcf1a87d09cc656d098e4f25b9a5134ac5 (diff)
update was needed
Diffstat (limited to 'users/bee')
-rw-r--r--users/bee/default.nix90
1 files changed, 0 insertions, 90 deletions
diff --git a/users/bee/default.nix b/users/bee/default.nix
deleted file mode 100644
index 242afa5..0000000
--- a/users/bee/default.nix
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- systemState,
- user,
-}:
-{
- pkgs,
- lib,
- inputs,
- config,
- ...
-}:
-{
- imports = with inputs.self.homeModules; [
- ../common.nix
- beeMods
- programs
- inputs.noctalia.homeModules.default
- inputs.beevim.homeModules.default
- ];
-
- wrappers.neovim.enable = true;
-
- programs.noctalia-shell = {
- enable = true;
- user-templates = {
- config = { };
- templates = {
- nvim = {
- input_path = "~/.config/matugen/templates/neovim.lua";
- output_path = "~/.config/nvim/colors/matugen.lua";
- };
- neovim = {
- input_path = "~/.config/matugen/templates/neovim.json";
- output_path = "~/.config/nvim/colors.json";
- };
- equibop = {
- input_path = "~/.config/matugen/templates/discord.css";
- output_path = "~/.config/equibop/themes/matugen-sys24.css";
- };
- xresources = lib.mkIf config.beeMods.windowManagers.dwm.enable {
- input_path = "~/.config/matugen/templates/colors-xresources";
- output_path = "~/.config/x11/matugen.Xresources";
- };
- seq = lib.mkIf (config.beeMods.terminal.default == "foot") {
- input_path = "~/.config/matugen/templates/sequences";
- output_path = "~/.config/sequences";
- post_hook = "sh '${config.home.homeDirectory}/.config/sequences'";
- };
- };
- };
- };
-
- beeMods = {
- windowManagers = {
- dwm.enable = false;
- hyprland.enable = true;
- mango.enable = false;
- eyeCandy = {
- animations.enable = false;
- window = {
- blur.enable = false;
- blur.radius = 10;
- blur.passes = 3;
- # opacity = 0.87;
- shadows.enable = true;
- };
- };
- };
- matugen.enable = true;
- emacs.enable = false;
- terminal = {
- foot = true;
- font.family = "IosevkaInput";
- font.size = 11.0;
- };
- };
-
- home.username = user;
- home.homeDirectory = "/home/${user}";
-
- home.sessionVariables = {
- EDITOR = "vim";
- TERMINAL = config.beeMods.terminal.default;
- TERM = config.beeMods.terminal.default;
- };
-
- programs.home-manager.enable = true;
-
- home.stateVersion = systemState; # check flake.nix
-}