-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed build, nixvim standalone works awesomely
nixvim standalone is now *properly* being integrated into home manager. combinePlugins is also working ( nixvim was injecting treesitter stuff that broke nix grammar ) the signalis plymouth theme was just moved from main/hosts/hyprdash to refactor/packages still working towards parity with main but it's getting much closer
- Loading branch information
Showing
276 changed files
with
477 additions
and
301 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,68 @@ | ||
{ pkgs, small, ... }: | ||
{ | ||
imports = [ | ||
./shell | ||
./wm | ||
./vscode.nix | ||
./firefox.nix | ||
./nvim.nix | ||
]; | ||
|
||
programs = { | ||
gpg.enable = true; | ||
}; | ||
|
||
services.gpg-agent = { | ||
enable = true; | ||
enableSshSupport = true; | ||
}; | ||
|
||
home.packages = with pkgs; [ | ||
# cargo | ||
# rustc | ||
vlc | ||
zathura | ||
brave | ||
libreoffice-fresh | ||
# neovim | ||
yubioath-flutter | ||
small.proton-pass | ||
anki | ||
imv | ||
mpv | ||
nil | ||
obsidian | ||
spotify | ||
nixpkgs-fmt | ||
vesktop | ||
tigervnc | ||
prismlauncher | ||
playerctl | ||
tofi | ||
wl-clipboard | ||
libnotify | ||
pavucontrol | ||
libqalculate | ||
qalculate-gtk | ||
file-roller | ||
grimblast | ||
ffmpeg | ||
signal-desktop | ||
hyprlock | ||
rustup | ||
glib | ||
|
||
(octaveFull.withPackages ( | ||
opkgs: with opkgs; [ | ||
symbolic | ||
io | ||
ocl | ||
linear-algebra | ||
matgeom | ||
general | ||
audio | ||
control | ||
] | ||
)) | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,10 @@ | ||
{ pkgs, ... }: | ||
let | ||
module = import ../packages/nixvim/nixvim.nix; | ||
module = import ../packages/nixvim { inherit pkgs; }; | ||
in | ||
{ | ||
programs.nixvim = { | ||
programs.nixvim = module // { | ||
enable = true; | ||
defaultEditor = true; | ||
|
||
extraPackages = with pkgs; [ | ||
nixfmt-rfc-style | ||
typstyle | ||
]; | ||
|
||
plugins.treesitter.settings.grammarPackages = [ pkgs.tree-sitter-grammars.tree-sitter-nu ]; | ||
|
||
colorscheme = "gruvbox-material"; | ||
extraPlugins = with pkgs.vimPlugins; [ | ||
gruvbox-material-nvim | ||
quick-scope | ||
]; | ||
extraConfigLuaPre = '' | ||
require('gruvbox-material').setup({ | ||
italics = true, -- enable italics in general | ||
contrast = "hard", -- set contrast, can be any of "hard", "medium", "soft" | ||
comments = { | ||
italics = true, -- enable italic comments | ||
}, | ||
background = { | ||
transparent = true, -- set the background to transparent | ||
}, | ||
float = { | ||
force_background = false, -- force background on floats even when background.transparent is set | ||
background_color = nil, -- set color for float backgrounds. If nil, uses the default color set | ||
}, | ||
signs = { | ||
highlight = true, -- whether to highlight signs | ||
}, | ||
}) | ||
''; | ||
} // module; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ | |
}; | ||
eza = { | ||
enable = true; | ||
icons = true; | ||
icons = "auto"; | ||
}; | ||
gh.enable = true; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.