rm rnix
This commit is contained in:
parent
e57625aa92
commit
985a4ddc86
3 changed files with 6 additions and 6 deletions
|
|
@ -1,8 +1,12 @@
|
||||||
{ ... }: {
|
{ pkgs, ... }: {
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.05";
|
||||||
home.username = "jonathan";
|
home.username = "jonathan";
|
||||||
home.homeDirectory = "/home/jonathan";
|
home.homeDirectory = "/home/jonathan";
|
||||||
imports = [ ./gnome.nix ];
|
imports = [
|
||||||
|
../../programs/gnome
|
||||||
|
../../programs/nvim
|
||||||
|
../../programs/zsh
|
||||||
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
element-desktop
|
element-desktop
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,6 @@ cmp.setup {
|
||||||
['<CR>'] = cmp.mapping.confirm({ select = true }),
|
['<CR>'] = cmp.mapping.confirm({ select = true }),
|
||||||
}),
|
}),
|
||||||
sources = cmp.config.sources({
|
sources = cmp.config.sources({
|
||||||
{ name = 'cmp_tabnine' },
|
|
||||||
{ name = 'nvim_lsp' },
|
{ name = 'nvim_lsp' },
|
||||||
{ name = "otter" },
|
{ name = "otter" },
|
||||||
{ name = 'path' },
|
{ name = 'path' },
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,6 @@ in
|
||||||
nixGrammars = true;
|
nixGrammars = true;
|
||||||
ensureInstalled = "all";
|
ensureInstalled = "all";
|
||||||
};
|
};
|
||||||
treesitter-context.enable = true;
|
|
||||||
surround.enable = true;
|
surround.enable = true;
|
||||||
cmp-nvim-lsp.enable = true;
|
cmp-nvim-lsp.enable = true;
|
||||||
lsp-format.enable = true;
|
lsp-format.enable = true;
|
||||||
|
|
@ -246,7 +245,6 @@ in
|
||||||
servers = {
|
servers = {
|
||||||
astro.enable = true;
|
astro.enable = true;
|
||||||
cssls.enable = true;
|
cssls.enable = true;
|
||||||
rnix-lsp.enable = true;
|
|
||||||
nil-ls = {
|
nil-ls = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraOptions = {
|
extraOptions = {
|
||||||
|
|
@ -345,7 +343,6 @@ in
|
||||||
cmp-vsnip
|
cmp-vsnip
|
||||||
cmp-path
|
cmp-path
|
||||||
cmp-spell
|
cmp-spell
|
||||||
cmp-tabnine
|
|
||||||
nvim-web-devicons
|
nvim-web-devicons
|
||||||
telescope-ui-select-nvim
|
telescope-ui-select-nvim
|
||||||
telescope-fzf-native-nvim
|
telescope-fzf-native-nvim
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue