Compare commits

..

8 Commits

Author SHA1 Message Date
6ed2ef0b10
Merge remote-tracking branch 'refs/remotes/origin/flake-update' into flake-update
All checks were successful
Test templates, puts into cache / nix (nix-runner) (push) Successful in 3m39s
2025-03-28 10:40:36 -05:00
f7b0ab08f4
add fontpreview
All checks were successful
Test templates, puts into cache / nix (nix-runner) (push) Successful in 3m53s
2025-03-28 08:08:52 -05:00
1132328a29
better telescope previewing, formatting
Some checks failed
Test templates, puts into cache / nix (nix-runner) (push) Has been cancelled
2025-03-28 08:07:15 -05:00
0abc212049
Trust me
Some checks failed
Test templates, puts into cache / nix (nix-runner) (push) Failing after 3m57s
2025-03-28 08:00:20 -05:00
f3ed4def82
adding pppler for pdftoppm 2025-03-28 08:00:13 -05:00
2d486c13ca
nix pinning nixpkgs
Some checks failed
Test templates, puts into cache / nix (nix-runner) (push) Failing after 3m55s
2025-03-28 07:53:14 -05:00
81a8931936
feat: adds image previewing libraries and remove spaceport 2025-03-28 07:53:07 -05:00
84f2c51848
ci: no jenkins
All checks were successful
Test templates, puts into cache / nix (nix-runner) (push) Successful in 4m4s
2025-03-28 07:17:50 -05:00
6 changed files with 27 additions and 2 deletions

0
Jenkinsfile vendored
View File

View File

@ -25,6 +25,11 @@ in
pkgs.fd pkgs.fd
pkgs.ripgrep pkgs.ripgrep
pkgs.just pkgs.just
pkgs.chafa
pkgs.fontpreview
pkgs.poppler_utils
pkgs.tdf
pkgs.viu
# cli markdown tool # cli markdown tool
pkgs.glow pkgs.glow
@ -136,6 +141,8 @@ in
nvim-treesitter nvim-treesitter
telescope-fzf-native-nvim telescope-fzf-native-nvim
telescope-file-browser-nvim telescope-file-browser-nvim
telescope-media-files-nvim
telescope-symbols-nvim
# need fzf for parrot # need fzf for parrot
fzf-lua fzf-lua
ctrlp-vim ctrlp-vim
@ -178,7 +185,7 @@ in
# custom plugins from flakes # custom plugins from flakes
pkgs.customVimPlugins.cmp-vimtex pkgs.customVimPlugins.cmp-vimtex
pkgs.customVimPlugins.spaceport-nvim # pkgs.customVimPlugins.spaceport-nvim
pkgs.customVimPlugins.nomodoro pkgs.customVimPlugins.nomodoro
pkgs.customVimPlugins.parrot-nvim pkgs.customVimPlugins.parrot-nvim
pkgs.customVimPlugins.nvim-web-devicons pkgs.customVimPlugins.nvim-web-devicons
@ -259,6 +266,7 @@ in
unbind '"' unbind '"'
unbind % unbind %
set -s copy-command 'xsel -bi' set -s copy-command 'xsel -bi'
bind -N "Change layout" -T prefix % next-layout
bind -N "Horizontal split" -T prefix | split-window -h bind -N "Horizontal split" -T prefix | split-window -h
bind -N "Vertical split" -T prefix - split-window -v bind -N "Vertical split" -T prefix - split-window -v
bind -N "Enter copy mode" -T prefix Space copy-mode bind -N "Enter copy mode" -T prefix Space copy-mode

View File

@ -64,7 +64,7 @@
-- load file browser and telescope -- load file browser and telescope
${builtins.readFile ./telescope.lua} ${builtins.readFile ./telescope.lua}
${builtins.readFile ./spaceport.lua} -- $ --{builtins.readFile ./spaceport.lua}
-- color scheme -- color scheme
require("rose-pine").setup({}) require("rose-pine").setup({})

View File

@ -9,6 +9,7 @@ require("telescope").setup({
require("telescope").load_extension("file_browser") require("telescope").load_extension("file_browser")
require("telescope").load_extension("fzf") require("telescope").load_extension("fzf")
require("telescope").load_extension("media_files")
vim.api.nvim_set_keymap("n", "<leader>tt", "<cmd>Telescope<CR>", { noremap = true }) vim.api.nvim_set_keymap("n", "<leader>tt", "<cmd>Telescope<CR>", { noremap = true })
vim.api.nvim_set_keymap("n", "<leader>tg", "<cmd>Telescope live_grep<CR>", { noremap = true }) vim.api.nvim_set_keymap("n", "<leader>tg", "<cmd>Telescope live_grep<CR>", { noremap = true })

View File

@ -40,6 +40,10 @@ in
''; '';
nix.settings = { nix.settings = {
trusted-users = [
"root"
"@wheel"
];
trusted-substituters = [ "http://attic.baklava" ]; trusted-substituters = [ "http://attic.baklava" ];
trusted-public-keys = [ "systems:tvbHIThn7MAwvgMSiYR3ULVlL6cBrA40afqGuextnNQ=" ]; trusted-public-keys = [ "systems:tvbHIThn7MAwvgMSiYR3ULVlL6cBrA40afqGuextnNQ=" ];
}; };

View File

@ -54,6 +54,12 @@ in
withDocker = false; withDocker = false;
}; };
modules = [ modules = [
(
{ ... }:
{
nix.registry.nixpkgs.flake = inputs.nixpkgs-24-11;
}
)
./commonWSL-configuration.nix ./commonWSL-configuration.nix
inputs.sops-nix.nixosModules.sops inputs.sops-nix.nixosModules.sops
inputs.homeManager-24-11.nixosModules.home-manager inputs.homeManager-24-11.nixosModules.home-manager
@ -87,6 +93,12 @@ in
withDocker = true; withDocker = true;
}; };
modules = [ modules = [
(
{ ... }:
{
nix.registry.nixpkgs.flake = inputs.nixpkgs-24-11;
}
)
./commonWSL-configuration.nix ./commonWSL-configuration.nix
inputs.sops-nix.nixosModules.sops inputs.sops-nix.nixosModules.sops
inputs.homeManager-24-11.nixosModules.home-manager inputs.homeManager-24-11.nixosModules.home-manager