Compare commits

..

No commits in common. "d87c4da49e8f46c8ed24739c99b787d6461ef4e7" and "4a5dbf9f621e1bde5cdfca719f2de0d4a07b34f2" have entirely different histories.

9 changed files with 13 additions and 18 deletions

View File

@ -17,6 +17,11 @@
agenix.inputs.nixpkgs.follows = "nixpkgs";
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.url = "github:nix-community/home-manager";
@ -26,8 +31,8 @@
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
nix-super.url = "github:privatevoid-net/nix-super";
nix-super.inputs.nixpkgs.follows = "stable";
nix-super.url = "github:privatevoid-net/nix-super/aaba1f91e7eba8ce029fa6bfa81ad9e14a13708d";
nix-super.inputs.nixpkgs.follows = "nixpkgs";
rofi-wayland.url = "github:lbonn/rofi/wayland";
rofi-wayland.flake = false;

View File

@ -18,7 +18,6 @@
personal.enable = true;
};
programs.hyprland.nvidiaSupport = true;
programs.hyprland.keyboardLayouts = [ "us" "de" ];
services.mullvad.enable = true;
programs.ledger.enable = true;
};

View File

@ -100,6 +100,7 @@ in
statix
manix
nix-output-monitor
attic
# other
bat

View File

@ -25,7 +25,7 @@ in
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
input {
kb_layout = ${concatStringsSep "," cfg.keyboardLayouts}
kb_layout = de,us
kb_variant =
kb_model =
kb_options = grp:win_space_toggle,caps:escape

View File

@ -25,11 +25,6 @@ in
description = "enable window shadows";
default = true;
};
keyboardLayouts = mkOption {
type = types.listOf types.str;
description = "list of keyboard layouts";
default = [ "de" "us" ];
};
};
config = mkIf cfg.enable {

View File

@ -239,12 +239,11 @@ in
stylua
sumneko-lua-language-server
taplo
typst
typst-lsp
yamlfmt
];
plugins = [
pkgs.vimPlugins.lazy-nvim
plugins = with pkgs.vimPlugins; [
lazy-nvim
nvim-treesitter.withAllGrammars
];
};
};

View File

@ -234,10 +234,6 @@ with builtins;
cmd = [ "StartupTime" ];
conf = readFile ./vim-startuptime.lua;
}
{
plugin = typst-vim;
ft = [ "typst" "typ" ];
}
{
plugin = comment-nvim;
event = [ "BufReadPost" "BufNewFile" ];

View File

@ -127,7 +127,6 @@ local servers = {
"pylsp",
"ruff_lsp",
"rust_analyzer",
"typst_lsp",
}
for _, lsp in ipairs(servers) do
lspconfig_setup(lsp, {})

View File

@ -3,6 +3,7 @@
_: prev:
{
agenix = inputs.agenix.packages.${prev.system}.default;
attic = inputs.attic.packages.${prev.system}.default;
hyprpaper = inputs.hyprpaper.packages.${prev.system}.default;
nil = inputs.nil.packages.${prev.system}.default;
nix-super = inputs.nix-super.packages.${prev.system}.default;