Compare commits
No commits in common. "d87c4da49e8f46c8ed24739c99b787d6461ef4e7" and "4a5dbf9f621e1bde5cdfca719f2de0d4a07b34f2" have entirely different histories.
d87c4da49e
...
4a5dbf9f62
|
@ -17,6 +17,11 @@
|
||||||
agenix.inputs.nixpkgs.follows = "nixpkgs";
|
agenix.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
agenix.url = "github:ryantm/agenix";
|
agenix.url = "github:ryantm/agenix";
|
||||||
|
|
||||||
|
attic.inputs.flake-utils.follows = "flake-utils";
|
||||||
|
attic.inputs.nixpkgs-stable.follows = "stable";
|
||||||
|
attic.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
attic.url = "github:zhaofengli/attic";
|
||||||
|
|
||||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
home-manager.url = "github:nix-community/home-manager";
|
home-manager.url = "github:nix-community/home-manager";
|
||||||
|
|
||||||
|
@ -26,8 +31,8 @@
|
||||||
|
|
||||||
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
|
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
|
||||||
|
|
||||||
nix-super.url = "github:privatevoid-net/nix-super";
|
nix-super.url = "github:privatevoid-net/nix-super/aaba1f91e7eba8ce029fa6bfa81ad9e14a13708d";
|
||||||
nix-super.inputs.nixpkgs.follows = "stable";
|
nix-super.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
rofi-wayland.url = "github:lbonn/rofi/wayland";
|
rofi-wayland.url = "github:lbonn/rofi/wayland";
|
||||||
rofi-wayland.flake = false;
|
rofi-wayland.flake = false;
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
personal.enable = true;
|
personal.enable = true;
|
||||||
};
|
};
|
||||||
programs.hyprland.nvidiaSupport = true;
|
programs.hyprland.nvidiaSupport = true;
|
||||||
programs.hyprland.keyboardLayouts = [ "us" "de" ];
|
|
||||||
services.mullvad.enable = true;
|
services.mullvad.enable = true;
|
||||||
programs.ledger.enable = true;
|
programs.ledger.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -100,6 +100,7 @@ in
|
||||||
statix
|
statix
|
||||||
manix
|
manix
|
||||||
nix-output-monitor
|
nix-output-monitor
|
||||||
|
attic
|
||||||
|
|
||||||
# other
|
# other
|
||||||
bat
|
bat
|
||||||
|
|
|
@ -25,7 +25,7 @@ in
|
||||||
|
|
||||||
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
||||||
input {
|
input {
|
||||||
kb_layout = ${concatStringsSep "," cfg.keyboardLayouts}
|
kb_layout = de,us
|
||||||
kb_variant =
|
kb_variant =
|
||||||
kb_model =
|
kb_model =
|
||||||
kb_options = grp:win_space_toggle,caps:escape
|
kb_options = grp:win_space_toggle,caps:escape
|
||||||
|
|
|
@ -25,11 +25,6 @@ in
|
||||||
description = "enable window shadows";
|
description = "enable window shadows";
|
||||||
default = true;
|
default = true;
|
||||||
};
|
};
|
||||||
keyboardLayouts = mkOption {
|
|
||||||
type = types.listOf types.str;
|
|
||||||
description = "list of keyboard layouts";
|
|
||||||
default = [ "de" "us" ];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
|
@ -239,12 +239,11 @@ in
|
||||||
stylua
|
stylua
|
||||||
sumneko-lua-language-server
|
sumneko-lua-language-server
|
||||||
taplo
|
taplo
|
||||||
typst
|
|
||||||
typst-lsp
|
|
||||||
yamlfmt
|
yamlfmt
|
||||||
];
|
];
|
||||||
plugins = [
|
plugins = with pkgs.vimPlugins; [
|
||||||
pkgs.vimPlugins.lazy-nvim
|
lazy-nvim
|
||||||
|
nvim-treesitter.withAllGrammars
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -234,10 +234,6 @@ with builtins;
|
||||||
cmd = [ "StartupTime" ];
|
cmd = [ "StartupTime" ];
|
||||||
conf = readFile ./vim-startuptime.lua;
|
conf = readFile ./vim-startuptime.lua;
|
||||||
}
|
}
|
||||||
{
|
|
||||||
plugin = typst-vim;
|
|
||||||
ft = [ "typst" "typ" ];
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
plugin = comment-nvim;
|
plugin = comment-nvim;
|
||||||
event = [ "BufReadPost" "BufNewFile" ];
|
event = [ "BufReadPost" "BufNewFile" ];
|
||||||
|
|
|
@ -127,7 +127,6 @@ local servers = {
|
||||||
"pylsp",
|
"pylsp",
|
||||||
"ruff_lsp",
|
"ruff_lsp",
|
||||||
"rust_analyzer",
|
"rust_analyzer",
|
||||||
"typst_lsp",
|
|
||||||
}
|
}
|
||||||
for _, lsp in ipairs(servers) do
|
for _, lsp in ipairs(servers) do
|
||||||
lspconfig_setup(lsp, {})
|
lspconfig_setup(lsp, {})
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
_: prev:
|
_: prev:
|
||||||
{
|
{
|
||||||
agenix = inputs.agenix.packages.${prev.system}.default;
|
agenix = inputs.agenix.packages.${prev.system}.default;
|
||||||
|
attic = inputs.attic.packages.${prev.system}.default;
|
||||||
hyprpaper = inputs.hyprpaper.packages.${prev.system}.default;
|
hyprpaper = inputs.hyprpaper.packages.${prev.system}.default;
|
||||||
nil = inputs.nil.packages.${prev.system}.default;
|
nil = inputs.nil.packages.${prev.system}.default;
|
||||||
nix-super = inputs.nix-super.packages.${prev.system}.default;
|
nix-super = inputs.nix-super.packages.${prev.system}.default;
|
||||||
|
|
Loading…
Reference in New Issue