put the stuff back

This commit is contained in:
zoe 2023-06-04 10:39:39 +02:00
parent e526f0d373
commit 029ffb4b7f
3 changed files with 7 additions and 7 deletions

View File

@ -5,14 +5,13 @@
supercolor.url = "github:zoe-bat/supercolor";
kaokao.url = "github:zoe-bat/kaokao";
i3layouts-rofi.url = "github:zoe-bat/i3layouts-rofi";
hx.url = "github:helix-editor/helix";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs
, home-manager, supercolor, i3layouts-rofi, kaokao, hx
, home-manager, supercolor, i3layouts-rofi, kaokao
}@inputs:
let
system = "x86_64-linux";

View File

@ -1,7 +1,7 @@
{ pkgs, hx, ... }: {
{ pkgs, ... }: {
home-manager.users.zoe.programs.helix = {
enable = true;
package = hx.packages.${pkgs.system}.default;
package = pkgs.helix;
settings = {
theme = "catppuccin_frappe";
keys = { normal = { }; };
@ -11,8 +11,7 @@
soft-wrap.enable = true;
lsp.display-messages = true;
};
};
languages.language-server = {
languages.language-server = {
"html-language-server" = { command = "html-languageserver"; };
"css-language-server" = { command = "vscode-css-language-server"; };
"scss-language-server" = {
@ -58,5 +57,7 @@
language-servers = [ "typst-language-server" ];
}
];
};
};
}

View File

@ -1,4 +1,4 @@
{ pkgs, config, hx, ... }:
{ pkgs, config, ... }:
let
nvimCustom = import ./nvim/settings.nix;
in