Compare commits

..

9 Commits

11 changed files with 4 additions and 131 deletions

View File

@@ -19,10 +19,7 @@
}:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
pkgs = import nixpkgs { inherit system; };
in
{
homeConfigurations = {

View File

@@ -17,11 +17,7 @@
./programs/tmux.nix
./programs/git.nix
./programs/libreoffice.nix
./programs/vscode.nix
./programs/nvim.nix
./programs/azuredatastudio.nix
./programs/filezilla.nix
./programs/ripgrep.nix
./wm/rofi.nix
./wm/cursor.nix
./wm/dconf.nix

View File

@@ -1,7 +0,0 @@
{ pkgs, ... }:
{
home.packages = [
pkgs.azuredatastudio
];
}

View File

@@ -1,7 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
filezilla
];
}

View File

@@ -5,7 +5,7 @@
enable = true;
settings.user = {
name = "Armel van Ravels";
email = "armel@webavance.nl";
email = "armel@armel.nl";
};
};
}

View File

@@ -3,11 +3,6 @@
{
programs.neovim = {
enable = true;
extraLuaPackages = ps: [ ps.magick ];
extraPackages = [
pkgs.ueberzugpp
pkgs.imagemagick
];
plugins = with pkgs.vimPlugins; [
neo-tree-nvim
@@ -23,7 +18,6 @@
(nvim-treesitter.withAllGrammars)
vim-nix
lualine-nvim
image-nvim
];
extraLuaConfig = ''
@@ -97,62 +91,6 @@
lualine_z = {'location'}
}
}
-- =========================
-- image-nvim
-- =========================
require("image").setup({
backend = "ueberzug", -- or "ueberzug" or "sixel"
processor = "magick_cli", -- or "magick_rock"
integrations = {
markdown = {
enabled = true,
clear_in_insert_mode = false,
download_remote_images = true,
only_render_image_at_cursor = false,
only_render_image_at_cursor_mode = "popup", -- or "inline"
floating_windows = false, -- if true, images will be rendered in floating markdown windows
filetypes = { "markdown", "vimwiki" }, -- markdown extensions (ie. quarto) can go here
},
asciidoc = {
enabled = true,
clear_in_insert_mode = false,
download_remote_images = true,
only_render_image_at_cursor = false,
only_render_image_at_cursor_mode = "popup",
floating_windows = false,
filetypes = { "asciidoc", "adoc" },
},
neorg = {
enabled = true,
filetypes = { "norg" },
},
rst = {
enabled = true,
},
typst = {
enabled = true,
filetypes = { "typst" },
},
html = {
enabled = false,
},
css = {
enabled = false,
},
},
max_width = nil,
max_height = nil,
max_width_window_percentage = nil,
max_height_window_percentage = 50,
scale_factor = 1.0,
window_overlap_clear_enabled = false, -- toggles images when windows are overlapped
window_overlap_clear_ft_ignore = { "cmp_menu", "cmp_docs", "snacks_notif", "scrollview", "scrollview_sign" },
editor_only_render_when_focused = false, -- auto show/hide images when the editor gains/looses focus
tmux_show_only_in_active_window = false, -- auto show/hide images in the correct Tmux window (needs visual-activity off)
hijack_file_patterns = { "*.png", "*.jpg", "*.jpeg", "*.gif", "*.webp", "*.avif" }, -- render image files as images when opened
})
'';
};
}

View File

@@ -1,8 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
ripgrep
];
}

View File

@@ -1,25 +0,0 @@
{ pkgs, ... }:
{
programs.vscode = {
enable = true;
package = pkgs.vscode.fhs;
profiles.default.extensions = with pkgs.vscode-extensions; [
ms-dotnettools.csharp
ms-dotnettools.csdevkit
ms-dotnettools.vscode-dotnet-runtime
mkhl.direnv # Direnv integration for VSCode
];
profiles.default.userSettings = {
"direnv.restart.automatic" = true;
"terminal.integrated.defaultProfile.linux" = "zsh";
"terminal.integrated.profiles.linux" = {
zsh = {
path = pkgs.zsh;
};
};
};
};
}

View File

@@ -32,8 +32,8 @@
};
decoration = {
inactive_opacity = 0.9;
active_opacity = 1.0;
inactive_opacity = 0.8;
active_opacity = 0.9;
rounding = 5;
rounding_power = 2.5;
blur = {

View File

@@ -15,7 +15,6 @@ in
];
wallpaper = [
"DP-2,${wallpaper2}"
"HDMI-A-1,${wallpaper2}"
",${wallpaper}"
];
};

View File

@@ -24,7 +24,6 @@
"pulseaudio"
"cpu"
"tray"
"battery"
"clock"
];
@@ -50,10 +49,6 @@
ignored-players = [ "firefox" "vlc" ];
};
tray = {
spacing = 10;
};
cpu = {
format = " {usage}%";
tooltip = false;
@@ -67,11 +62,6 @@
format = "{icon} {name}";
on-click = "activate";
};
battery = {
"format" = "{icon} {capacity}%";
"format-icons" = ["" "" "" "" ""];
};
};
};
}