update mastodon

This commit is contained in:
Vivian 2022-11-06 22:13:48 +01:00
parent 03b7e4196a
commit b04d93811e
10 changed files with 124 additions and 14 deletions

View file

@ -11,8 +11,8 @@ in {
home.stateVersion = "22.05";
imports = [
inputs.hyprland.homeManagerModules.default
./hyprland.nix
./neovim.nix
./eww
./theme.nix
];

View file

@ -5,6 +5,10 @@
wallpaper = eDP-1,~/cloud/Pictures/Wallpapers-Laptop/wallpaper-nix-pink.png
'';
imports = [
inputs.hyprland.homeManagerModules.default
];
wayland.windowManager.hyprland = let
startup-script = pkgs.writeScriptBin "startup" ''
#!${pkgs.stdenv.shell}

View file

@ -0,0 +1,37 @@
{ inputs, pkgs, lib, ... }: {
imports = [ inputs.nixvim.homeManagerModules.nixvim ];
programs.nixvim = {
enable = true;
package = pkgs.neovim-unwrapped;
extraPlugins = with pkgs.vimPlugins; [ catppuccin-nvim ];
colorscheme = "catppuccin-frappe";
plugins = {
nix.enable = true;
treesitter = {
enable = true;
nixGrammars = false;
ensureInstalled = [];
};
surround.enable = true;
fugitive.enable = true;
lualine = {
enable = true;
theme = "catppuccin";
};
telescope = {
enable = true;
extensions.fzf-native.enable = true;
};
lsp = {
enable = true;
servers.rust-analyzer.enable = true;
servers.rnix-lsp.enable = true;
servers.pyright.enable = true;
};
nvim-cmp = { enable = true; };
};
};
}