├── .gitignore ├── .luarc.json ├── README.md ├── flake.lock ├── flake.nix ├── modules ├── home-manager │ ├── default.nix │ ├── hosts │ │ ├── malenia │ │ │ ├── apps │ │ │ │ ├── default.nix │ │ │ │ ├── ghostty │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── keybindings │ │ │ │ │ └── default.nix │ │ │ │ ├── hypr │ │ │ │ │ ├── config │ │ │ │ │ │ ├── apps.conf │ │ │ │ │ │ ├── binds.conf │ │ │ │ │ │ ├── cursor.conf │ │ │ │ │ │ ├── hyprland.conf │ │ │ │ │ │ ├── input.conf │ │ │ │ │ │ ├── looks.conf │ │ │ │ │ │ └── window.conf │ │ │ │ │ └── default.nix │ │ │ │ ├── sunshine │ │ │ │ │ ├── config │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── apps.json │ │ │ │ │ │ └── sunshine.conf │ │ │ │ │ └── default.nix │ │ │ │ ├── waybar │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.jsonc │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ └── theme.css │ │ │ │ │ └── default.nix │ │ │ │ └── wofi │ │ │ │ │ ├── config │ │ │ │ │ ├── config │ │ │ │ │ ├── menu │ │ │ │ │ ├── menu.css │ │ │ │ │ └── style.css │ │ │ │ │ └── default.nix │ │ │ └── default.nix │ │ ├── miquella │ │ │ └── default.nix │ │ └── solaire │ │ │ ├── apps │ │ │ ├── aerospace │ │ │ │ ├── config │ │ │ │ │ ├── aerospace.toml │ │ │ │ │ └── on-ws-change.sh │ │ │ │ └── default.nix │ │ │ ├── default.nix │ │ │ ├── ghostty │ │ │ │ ├── config │ │ │ │ │ ├── colors │ │ │ │ │ ├── config │ │ │ │ │ └── keybindings │ │ │ │ └── default.nix │ │ │ ├── hammerspoon │ │ │ │ ├── config │ │ │ │ │ ├── .luarc.json │ │ │ │ │ ├── .stylua.toml │ │ │ │ │ ├── Spoons │ │ │ │ │ │ ├── PaperWM.spoon │ │ │ │ │ │ │ ├── .stylua.toml │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── mission_control.lua │ │ │ │ │ │ │ └── swipe.lua │ │ │ │ │ │ └── SpoonInstall.spoon │ │ │ │ │ │ │ ├── docs.json │ │ │ │ │ │ │ └── init.lua │ │ │ │ │ ├── hammerspoon │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ └── reload.lua │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ └── paperwm.lua │ │ │ │ │ └── init.lua │ │ │ │ └── default.nix │ │ │ ├── kanata │ │ │ │ ├── config │ │ │ │ │ └── personal.kbd │ │ │ │ └── default.nix │ │ │ ├── nh │ │ │ │ └── default.nix │ │ │ ├── sketchybar │ │ │ │ ├── config │ │ │ │ │ ├── .luarc.json │ │ │ │ │ ├── bar.lua │ │ │ │ │ ├── colors.lua │ │ │ │ │ ├── default.lua │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── event_providers │ │ │ │ │ │ │ ├── cpu_load │ │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ │ ├── cpu_load.c │ │ │ │ │ │ │ │ └── makefile │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ ├── network_load │ │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ │ ├── network.h │ │ │ │ │ │ │ │ └── network_load.c │ │ │ │ │ │ │ └── sketchybar.h │ │ │ │ │ │ ├── icon_map.lua │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── menus │ │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ │ └── menus.c │ │ │ │ │ ├── icons.lua │ │ │ │ │ ├── init.lua │ │ │ │ │ ├── items │ │ │ │ │ │ ├── apple.lua │ │ │ │ │ │ ├── calendar.lua │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ ├── media.lua │ │ │ │ │ │ ├── menus.lua │ │ │ │ │ │ ├── notifications.lua │ │ │ │ │ │ ├── spaces.lua │ │ │ │ │ │ ├── spaces_menu_swap.lua │ │ │ │ │ │ ├── widgets │ │ │ │ │ │ │ ├── battery.lua │ │ │ │ │ │ │ ├── init.lua │ │ │ │ │ │ │ ├── messages.lua │ │ │ │ │ │ │ └── volume.lua │ │ │ │ │ │ └── wifi.lua │ │ │ │ │ ├── settings.lua │ │ │ │ │ ├── sketchybarrc │ │ │ │ │ └── stylua.toml │ │ │ │ └── default.nix │ │ │ ├── tmux │ │ │ │ ├── config │ │ │ │ │ ├── plugins │ │ │ │ │ │ └── .tpm │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── HOW_TO_PLUGIN.md │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── clean_plugins │ │ │ │ │ │ │ ├── install_plugins │ │ │ │ │ │ │ └── update_plugins │ │ │ │ │ │ │ ├── bindings │ │ │ │ │ │ │ ├── clean_plugins │ │ │ │ │ │ │ ├── install_plugins │ │ │ │ │ │ │ └── update_plugins │ │ │ │ │ │ │ ├── docs │ │ │ │ │ │ │ ├── automatic_tpm_installation.md │ │ │ │ │ │ │ ├── changing_plugins_install_dir.md │ │ │ │ │ │ │ ├── how_to_create_plugin.md │ │ │ │ │ │ │ ├── managing_plugins_via_cmd_line.md │ │ │ │ │ │ │ └── tpm_not_working.md │ │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ │ ├── check_tmux_version.sh │ │ │ │ │ │ │ ├── clean_plugins.sh │ │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ │ ├── plugin_functions.sh │ │ │ │ │ │ │ │ ├── shell_echo_functions.sh │ │ │ │ │ │ │ │ ├── tmux_echo_functions.sh │ │ │ │ │ │ │ │ ├── tmux_utils.sh │ │ │ │ │ │ │ │ └── utility.sh │ │ │ │ │ │ │ ├── install_plugins.sh │ │ │ │ │ │ │ ├── source_plugins.sh │ │ │ │ │ │ │ ├── update_plugin.sh │ │ │ │ │ │ │ ├── update_plugin_prompt_handler.sh │ │ │ │ │ │ │ └── variables.sh │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ ├── expect_failed_plugin_download │ │ │ │ │ │ │ ├── expect_successful_clean_plugins │ │ │ │ │ │ │ ├── expect_successful_multiple_plugins_download │ │ │ │ │ │ │ ├── expect_successful_plugin_download │ │ │ │ │ │ │ ├── expect_successful_update_of_a_single_plugin │ │ │ │ │ │ │ ├── expect_successful_update_of_all_plugins │ │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ │ └── tpm.sh │ │ │ │ │ │ │ ├── test_plugin_clean.sh │ │ │ │ │ │ │ ├── test_plugin_installation.sh │ │ │ │ │ │ │ ├── test_plugin_installation_legacy.sh │ │ │ │ │ │ │ ├── test_plugin_sourcing.sh │ │ │ │ │ │ │ └── test_plugin_update.sh │ │ │ │ │ │ │ └── tpm │ │ │ │ │ └── tmux.conf │ │ │ │ └── default.nix │ │ │ └── zellij │ │ │ │ ├── config │ │ │ │ ├── config.kdl │ │ │ │ └── layouts │ │ │ │ │ └── default.kdl │ │ │ │ └── default.nix │ │ │ └── default.nix │ └── shared │ │ ├── apps │ │ ├── bat │ │ │ ├── config │ │ │ │ └── themes │ │ │ │ │ └── tokyonight_night.tmTheme │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── lazygit │ │ │ ├── config │ │ │ │ └── config.yml │ │ │ └── default.nix │ │ ├── neovim │ │ │ └── config │ │ │ │ └── lazy-lock.json │ │ ├── nvim │ │ │ ├── config │ │ │ │ ├── .gitignore │ │ │ │ ├── .stylua.toml │ │ │ │ ├── init.lua │ │ │ │ ├── lsp │ │ │ │ │ ├── copilot.lua │ │ │ │ │ ├── eslint.lua │ │ │ │ │ ├── go.lua │ │ │ │ │ ├── json.lua │ │ │ │ │ ├── lua.lua │ │ │ │ │ ├── nix.lua │ │ │ │ │ ├── python.lua │ │ │ │ │ ├── tailwindcss.lua │ │ │ │ │ ├── typescript.lua │ │ │ │ │ └── yaml.lua │ │ │ │ ├── lua │ │ │ │ │ ├── config │ │ │ │ │ │ ├── autocmds.lua │ │ │ │ │ │ ├── keymaps.lua │ │ │ │ │ │ ├── lsp.lua │ │ │ │ │ │ └── options.lua │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── ai.lua │ │ │ │ │ │ ├── colorscheme.lua │ │ │ │ │ │ ├── formatting.lua │ │ │ │ │ │ ├── mini.lua │ │ │ │ │ │ ├── misc.lua │ │ │ │ │ │ └── treesitter.lua │ │ │ │ │ └── utils │ │ │ │ │ │ └── pack.lua │ │ │ │ └── nvim-pack-lock.json │ │ │ └── default.nix │ │ ├── ssh │ │ │ └── default.nix │ │ └── zsh │ │ │ ├── config │ │ │ ├── .gitignore │ │ │ ├── .zsh_plugins.txt │ │ │ ├── .zshrc │ │ │ └── plugins │ │ │ │ └── prompt_bfmp │ │ │ └── default.nix │ │ ├── default.nix │ │ └── users │ │ └── bruno.nix ├── hosts │ ├── malenia │ │ ├── containers │ │ │ ├── apprise │ │ │ │ └── default.nix │ │ │ ├── arr │ │ │ │ └── default.nix │ │ │ ├── audiobookshelf │ │ │ │ └── default.nix │ │ │ ├── authentik │ │ │ │ └── default.nix │ │ │ ├── baikal │ │ │ │ └── default.nix │ │ │ ├── beszel │ │ │ │ └── default.nix │ │ │ ├── dawarich │ │ │ │ └── default.nix │ │ │ ├── ddns │ │ │ │ └── default.nix │ │ │ ├── default.nix │ │ │ ├── dozzle │ │ │ │ └── default.nix │ │ │ ├── freshrss │ │ │ │ └── default.nix │ │ │ ├── glance │ │ │ │ ├── config │ │ │ │ │ └── glance.nix │ │ │ │ └── default.nix │ │ │ ├── grocy │ │ │ │ └── default.nix │ │ │ ├── hoarder │ │ │ │ └── default.nix │ │ │ ├── homepage │ │ │ │ ├── config │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── docker.nix │ │ │ │ │ ├── services.nix │ │ │ │ │ ├── settings.nix │ │ │ │ │ └── widgets.nix │ │ │ │ └── default.nix │ │ │ ├── immich │ │ │ │ └── default.nix │ │ │ ├── it-tools │ │ │ │ └── default.nix │ │ │ ├── jellyfin │ │ │ │ └── default.nix │ │ │ ├── jellyseerr │ │ │ │ └── default.nix │ │ │ ├── ollama-webui │ │ │ │ └── default.nix │ │ │ ├── orcaslicer │ │ │ │ └── default.nix │ │ │ ├── papra │ │ │ │ └── default.nix │ │ │ ├── pocket-id │ │ │ │ └── default.nix │ │ │ ├── qbittorrent │ │ │ │ └── default.nix │ │ │ ├── speedtest │ │ │ │ └── default.nix │ │ │ ├── stirling-pdf │ │ │ │ └── default.nix │ │ │ ├── tinyauth │ │ │ │ └── default.nix │ │ │ ├── traefik │ │ │ │ ├── config │ │ │ │ │ ├── dynamic.nix │ │ │ │ │ └── static.nix │ │ │ │ └── default.nix │ │ │ └── vaultwarden │ │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── filesystems.nix │ │ ├── hardware-configuration.nix │ │ ├── networking.nix │ │ ├── nvidia.nix │ │ ├── pkgs.nix │ │ ├── services │ │ │ ├── default.nix │ │ │ ├── displaymanager │ │ │ │ └── default.nix │ │ │ ├── gaming │ │ │ │ └── default.nix │ │ │ ├── ollama │ │ │ │ └── default.nix │ │ │ ├── restic │ │ │ │ └── default.nix │ │ │ ├── streaming │ │ │ │ └── default.nix │ │ │ └── wireguard │ │ │ │ └── default.nix │ │ ├── users.nix │ │ └── vars.nix │ ├── miquella │ │ ├── containers │ │ │ ├── beszel │ │ │ │ └── default.nix │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── filesystems.nix │ │ ├── hardware-configuration.nix │ │ ├── networking.nix │ │ ├── services │ │ │ ├── default.nix │ │ │ ├── headscale │ │ │ │ └── default.nix │ │ │ └── wireguard │ │ │ │ └── default.nix │ │ └── vars.nix │ └── solaire │ │ ├── default.nix │ │ └── services │ │ ├── default.nix │ │ └── kanata │ │ └── default.nix └── shared │ ├── darwin │ ├── brew.nix │ ├── default.nix │ ├── macos.nix │ └── pkgs.nix │ ├── nixos │ ├── age.nix │ ├── default.nix │ ├── locale.nix │ ├── networking.nix │ ├── pkgs.nix │ ├── secrets │ │ ├── apprise.age │ │ ├── audiobookshelf.age │ │ ├── authentik.age │ │ ├── bazarr.age │ │ ├── beszel.age │ │ ├── cloudflare.age │ │ ├── dawarich.age │ │ ├── files.nix │ │ ├── freshrss.age │ │ ├── hoarder.age │ │ ├── immich.age │ │ ├── jellyfin.age │ │ ├── ollama-webui.age │ │ ├── papra.age │ │ ├── prowlarr.age │ │ ├── radarr.age │ │ ├── restic-aws-containers-password.age │ │ ├── restic-aws-containers-repo.age │ │ ├── restic-aws-env.age │ │ ├── restic-aws-photos-password.age │ │ ├── restic-aws-photos-repo.age │ │ ├── secrets.nix │ │ ├── share.age │ │ ├── sonarr.age │ │ ├── speedtest-tracker.age │ │ ├── tailscale-servers.age │ │ ├── telegram.age │ │ ├── tinyauth.age │ │ ├── traefik-auth.age │ │ ├── vaultwarden.age │ │ ├── wireguard-malenia.age │ │ └── wireguard-miquella.age │ ├── services │ │ ├── default.nix │ │ └── ssh │ │ │ └── default.nix │ ├── system.nix │ └── users.nix │ ├── pkgs.nix │ └── vars.nix ├── overlays └── default.nix ├── pkgs └── default.nix └── util.nix /.gitignore: -------------------------------------------------------------------------------- 1 | # keep 2 | -------------------------------------------------------------------------------- /.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/.luarc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/flake.nix -------------------------------------------------------------------------------- /modules/home-manager/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/ghostty/config/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/ghostty/config/config -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/ghostty/config/keybindings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/ghostty/config/keybindings -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/ghostty/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/ghostty/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/hypr/config/apps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/hypr/config/apps.conf -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/hypr/config/binds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/hypr/config/binds.conf -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/hypr/config/cursor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/hypr/config/cursor.conf -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/hypr/config/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/hypr/config/hyprland.conf -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/hypr/config/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/hypr/config/input.conf -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/hypr/config/looks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/hypr/config/looks.conf -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/hypr/config/window.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/hypr/config/window.conf -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/hypr/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/hypr/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/sunshine/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/sunshine/config/.gitignore -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/sunshine/config/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/sunshine/config/apps.json -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/sunshine/config/sunshine.conf: -------------------------------------------------------------------------------- 1 | gamepad = xone 2 | -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/sunshine/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/sunshine/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/waybar/config/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/waybar/config/config.jsonc -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/waybar/config/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/waybar/config/style.css -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/waybar/config/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/waybar/config/theme.css -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/waybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/waybar/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/wofi/config/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/wofi/config/config -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/wofi/config/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/wofi/config/menu -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/wofi/config/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/wofi/config/menu.css -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/wofi/config/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/wofi/config/style.css -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/apps/wofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/malenia/apps/wofi/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/malenia/default.nix: -------------------------------------------------------------------------------- 1 | { ... }: 2 | 3 | { 4 | imports = [ ./apps ]; 5 | } 6 | -------------------------------------------------------------------------------- /modules/home-manager/hosts/miquella/default.nix: -------------------------------------------------------------------------------- 1 | { ... }: 2 | 3 | { 4 | imports = [ ]; 5 | } 6 | -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/aerospace/config/aerospace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/aerospace/config/aerospace.toml -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/aerospace/config/on-ws-change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/aerospace/config/on-ws-change.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/aerospace/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/aerospace/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/ghostty/config/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/ghostty/config/colors -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/ghostty/config/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/ghostty/config/config -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/ghostty/config/keybindings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/ghostty/config/keybindings -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/ghostty/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/ghostty/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/.luarc.json -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/.stylua.toml -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/PaperWM.spoon/.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/PaperWM.spoon/.stylua.toml -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/PaperWM.spoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/PaperWM.spoon/init.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/PaperWM.spoon/mission_control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/PaperWM.spoon/mission_control.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/PaperWM.spoon/swipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/PaperWM.spoon/swipe.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/SpoonInstall.spoon/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/SpoonInstall.spoon/docs.json -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/SpoonInstall.spoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/Spoons/SpoonInstall.spoon/init.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/hammerspoon/hooks/reload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/hammerspoon/hooks/reload.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/hammerspoon/plugins/paperwm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/hammerspoon/plugins/paperwm.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/config/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/config/init.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/hammerspoon/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/hammerspoon/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/kanata/config/personal.kbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/kanata/config/personal.kbd -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/kanata/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/kanata/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/nh/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/nh/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/.luarc.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtime.version": "Lua 5.4" 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/bar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/bar.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/colors.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/default.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/cpu_load/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/cpu_load/cpu.h -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/cpu_load/cpu_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/cpu_load/cpu_load.c -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/cpu_load/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/cpu_load/makefile -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/makefile -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/network_load/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/network_load/makefile -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/network_load/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/network_load/network.h -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/network_load/network_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/network_load/network_load.c -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/sketchybar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/event_providers/sketchybar.h -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/icon_map.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/icon_map.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/makefile -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/menus/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/menus/makefile -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/menus/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/helpers/menus/menus.c -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/icons.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/init.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/apple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/apple.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/calendar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/calendar.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/init.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/media.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/media.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/menus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/menus.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/notifications.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/notifications.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/spaces.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/spaces.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/spaces_menu_swap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/spaces_menu_swap.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/widgets/battery.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/widgets/battery.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/widgets/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/widgets/init.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/widgets/messages.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/widgets/messages.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/widgets/volume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/widgets/volume.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/items/wifi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/items/wifi.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/settings.lua -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/sketchybarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/sketchybarrc -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/config/stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/config/stylua.toml -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/sketchybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/sketchybar/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/.travis.yml -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/CHANGELOG.md -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/HOW_TO_PLUGIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/HOW_TO_PLUGIN.md -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/LICENSE.md -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/README.md -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bin/clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bin/clean_plugins -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bin/install_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bin/install_plugins -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bin/update_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bin/update_plugins -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bindings/clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bindings/clean_plugins -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bindings/install_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bindings/install_plugins -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bindings/update_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/bindings/update_plugins -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/docs/automatic_tpm_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/docs/automatic_tpm_installation.md -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/docs/changing_plugins_install_dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/docs/changing_plugins_install_dir.md -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/docs/how_to_create_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/docs/how_to_create_plugin.md -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/docs/managing_plugins_via_cmd_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/docs/managing_plugins_via_cmd_line.md -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/docs/tpm_not_working.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/docs/tpm_not_working.md -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/check_tmux_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/check_tmux_version.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/clean_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/clean_plugins.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/helpers/plugin_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/helpers/plugin_functions.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/helpers/shell_echo_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/helpers/shell_echo_functions.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/helpers/tmux_echo_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/helpers/tmux_echo_functions.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/helpers/tmux_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/helpers/tmux_utils.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/helpers/utility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/helpers/utility.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/install_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/install_plugins.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/source_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/source_plugins.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/update_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/update_plugin.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/update_plugin_prompt_handler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/update_plugin_prompt_handler.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/scripts/variables.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_failed_plugin_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_failed_plugin_download -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_successful_clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_successful_clean_plugins -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_successful_multiple_plugins_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_successful_multiple_plugins_download -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_successful_plugin_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_successful_plugin_download -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_successful_update_of_a_single_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_successful_update_of_a_single_plugin -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_successful_update_of_all_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/expect_successful_update_of_all_plugins -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/helpers/tpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/helpers/tpm.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/test_plugin_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/test_plugin_clean.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/test_plugin_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/test_plugin_installation.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/test_plugin_installation_legacy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/test_plugin_installation_legacy.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/test_plugin_sourcing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/test_plugin_sourcing.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/test_plugin_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tests/test_plugin_update.sh -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/plugins/.tpm/tpm -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/config/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/config/tmux.conf -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/tmux/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/tmux/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/zellij/config/config.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/zellij/config/config.kdl -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/zellij/config/layouts/default.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/zellij/config/layouts/default.kdl -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/apps/zellij/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/hosts/solaire/apps/zellij/default.nix -------------------------------------------------------------------------------- /modules/home-manager/hosts/solaire/default.nix: -------------------------------------------------------------------------------- 1 | { ... }: 2 | 3 | { 4 | imports = [ ./apps ]; 5 | } 6 | -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/bat/config/themes/tokyonight_night.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/bat/config/themes/tokyonight_night.tmTheme -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/bat/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/bat/default.nix -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/default.nix -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/lazygit/config/config.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | border: single 3 | -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/lazygit/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/lazygit/default.nix -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/neovim/config/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/neovim/config/lazy-lock.json -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/.gitignore: -------------------------------------------------------------------------------- 1 | lazy-lock.json 2 | -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/.stylua.toml -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/init.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lsp/copilot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lsp/copilot.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lsp/eslint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lsp/eslint.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lsp/go.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lsp/go.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lsp/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lsp/json.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lsp/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lsp/lua.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lsp/nix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lsp/nix.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lsp/python.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lsp/python.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lsp/tailwindcss.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lsp/tailwindcss.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lsp/typescript.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lsp/typescript.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lsp/yaml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lsp/yaml.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/config/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/config/autocmds.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/config/keymaps.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/config/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/config/lsp.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/config/options.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/plugins/ai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/plugins/ai.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/plugins/colorscheme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/plugins/colorscheme.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/plugins/formatting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/plugins/formatting.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/plugins/mini.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/plugins/mini.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/plugins/misc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/plugins/misc.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/lua/utils/pack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/lua/utils/pack.lua -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/config/nvim-pack-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/config/nvim-pack-lock.json -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/nvim/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/nvim/default.nix -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/ssh/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/ssh/default.nix -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/zsh/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/zsh/config/.gitignore -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/zsh/config/.zsh_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/zsh/config/.zsh_plugins.txt -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/zsh/config/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/zsh/config/.zshrc -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/zsh/config/plugins/prompt_bfmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/zsh/config/plugins/prompt_bfmp -------------------------------------------------------------------------------- /modules/home-manager/shared/apps/zsh/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/apps/zsh/default.nix -------------------------------------------------------------------------------- /modules/home-manager/shared/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/default.nix -------------------------------------------------------------------------------- /modules/home-manager/shared/users/bruno.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/home-manager/shared/users/bruno.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/apprise/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/apprise/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/arr/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/arr/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/audiobookshelf/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/audiobookshelf/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/authentik/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/authentik/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/baikal/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/baikal/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/beszel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/beszel/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/dawarich/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/dawarich/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/ddns/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/ddns/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/dozzle/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/dozzle/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/freshrss/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/freshrss/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/glance/config/glance.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/glance/config/glance.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/glance/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/glance/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/grocy/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/grocy/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/hoarder/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/hoarder/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/homepage/config/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/homepage/config/custom.css -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/homepage/config/docker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/homepage/config/docker.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/homepage/config/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/homepage/config/services.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/homepage/config/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/homepage/config/settings.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/homepage/config/widgets.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/homepage/config/widgets.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/homepage/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/homepage/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/immich/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/immich/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/it-tools/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/it-tools/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/jellyfin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/jellyfin/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/jellyseerr/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/jellyseerr/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/ollama-webui/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/ollama-webui/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/orcaslicer/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/orcaslicer/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/papra/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/papra/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/pocket-id/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/pocket-id/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/qbittorrent/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/qbittorrent/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/speedtest/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/speedtest/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/stirling-pdf/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/stirling-pdf/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/tinyauth/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/tinyauth/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/traefik/config/dynamic.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/traefik/config/dynamic.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/traefik/config/static.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/traefik/config/static.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/traefik/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/traefik/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/containers/vaultwarden/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/containers/vaultwarden/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/filesystems.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/filesystems.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/hardware-configuration.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/networking.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/nvidia.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/nvidia.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/pkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/pkgs.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/services/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/services/displaymanager/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/services/displaymanager/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/services/gaming/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/services/gaming/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/services/ollama/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/services/ollama/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/services/restic/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/services/restic/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/services/streaming/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/services/streaming/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/services/wireguard/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/services/wireguard/default.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/users.nix -------------------------------------------------------------------------------- /modules/hosts/malenia/vars.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/malenia/vars.nix -------------------------------------------------------------------------------- /modules/hosts/miquella/containers/beszel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/miquella/containers/beszel/default.nix -------------------------------------------------------------------------------- /modules/hosts/miquella/containers/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/miquella/containers/default.nix -------------------------------------------------------------------------------- /modules/hosts/miquella/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/miquella/default.nix -------------------------------------------------------------------------------- /modules/hosts/miquella/filesystems.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/miquella/filesystems.nix -------------------------------------------------------------------------------- /modules/hosts/miquella/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/miquella/hardware-configuration.nix -------------------------------------------------------------------------------- /modules/hosts/miquella/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/miquella/networking.nix -------------------------------------------------------------------------------- /modules/hosts/miquella/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/miquella/services/default.nix -------------------------------------------------------------------------------- /modules/hosts/miquella/services/headscale/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/miquella/services/headscale/default.nix -------------------------------------------------------------------------------- /modules/hosts/miquella/services/wireguard/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/miquella/services/wireguard/default.nix -------------------------------------------------------------------------------- /modules/hosts/miquella/vars.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/miquella/vars.nix -------------------------------------------------------------------------------- /modules/hosts/solaire/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/solaire/default.nix -------------------------------------------------------------------------------- /modules/hosts/solaire/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/solaire/services/default.nix -------------------------------------------------------------------------------- /modules/hosts/solaire/services/kanata/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/hosts/solaire/services/kanata/default.nix -------------------------------------------------------------------------------- /modules/shared/darwin/brew.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/darwin/brew.nix -------------------------------------------------------------------------------- /modules/shared/darwin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/darwin/default.nix -------------------------------------------------------------------------------- /modules/shared/darwin/macos.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/darwin/macos.nix -------------------------------------------------------------------------------- /modules/shared/darwin/pkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/darwin/pkgs.nix -------------------------------------------------------------------------------- /modules/shared/nixos/age.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/age.nix -------------------------------------------------------------------------------- /modules/shared/nixos/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/default.nix -------------------------------------------------------------------------------- /modules/shared/nixos/locale.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/locale.nix -------------------------------------------------------------------------------- /modules/shared/nixos/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/networking.nix -------------------------------------------------------------------------------- /modules/shared/nixos/pkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/pkgs.nix -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/apprise.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/apprise.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/audiobookshelf.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/audiobookshelf.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/authentik.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/authentik.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/bazarr.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/bazarr.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/beszel.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/beszel.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/cloudflare.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/cloudflare.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/dawarich.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/dawarich.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/files.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/files.nix -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/freshrss.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/freshrss.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/hoarder.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/hoarder.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/immich.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/immich.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/jellyfin.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/jellyfin.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/ollama-webui.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/ollama-webui.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/papra.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/papra.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/prowlarr.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/prowlarr.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/radarr.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/radarr.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/restic-aws-containers-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/restic-aws-containers-password.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/restic-aws-containers-repo.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/restic-aws-containers-repo.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/restic-aws-env.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/restic-aws-env.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/restic-aws-photos-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/restic-aws-photos-password.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/restic-aws-photos-repo.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/restic-aws-photos-repo.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/secrets.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/secrets.nix -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/share.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/share.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/sonarr.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/sonarr.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/speedtest-tracker.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/speedtest-tracker.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/tailscale-servers.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/tailscale-servers.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/telegram.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/telegram.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/tinyauth.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/tinyauth.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/traefik-auth.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/traefik-auth.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/vaultwarden.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/vaultwarden.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/wireguard-malenia.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/wireguard-malenia.age -------------------------------------------------------------------------------- /modules/shared/nixos/secrets/wireguard-miquella.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/secrets/wireguard-miquella.age -------------------------------------------------------------------------------- /modules/shared/nixos/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/services/default.nix -------------------------------------------------------------------------------- /modules/shared/nixos/services/ssh/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/services/ssh/default.nix -------------------------------------------------------------------------------- /modules/shared/nixos/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/system.nix -------------------------------------------------------------------------------- /modules/shared/nixos/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/nixos/users.nix -------------------------------------------------------------------------------- /modules/shared/pkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/pkgs.nix -------------------------------------------------------------------------------- /modules/shared/vars.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/modules/shared/vars.nix -------------------------------------------------------------------------------- /overlays/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/overlays/default.nix -------------------------------------------------------------------------------- /pkgs/default.nix: -------------------------------------------------------------------------------- 1 | { 2 | # ... 3 | } 4 | -------------------------------------------------------------------------------- /util.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfpimentel/nixos/HEAD/util.nix --------------------------------------------------------------------------------