forked from kanashimia/nixos-config
-
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.
- Loading branch information
Kanashimia
committed
May 5, 2021
1 parent
a64e7ab
commit 2127277
Showing
29 changed files
with
231 additions
and
137 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
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
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 was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ pkgs, ... }: | ||
|
||
{ | ||
programs.neovim = { | ||
enable = true; | ||
configure = { | ||
customRC = '' | ||
" here your custom configuration goes! | ||
''; | ||
packages.myVimPackage = with pkgs.vimPlugins; { | ||
# loaded on launch | ||
start = [ emmet-vim ]; | ||
# manually loadable by calling `:packadd $plugin-name` | ||
opt = [ ]; | ||
}; | ||
}; | ||
}; | ||
environment.systemPackages = with pkgs; [ nodejs ]; | ||
#programs.neovim = { | ||
# enable = true; | ||
# configure = { | ||
# customRC = '' | ||
# " here your custom configuration goes! | ||
# ''; | ||
# packages.myVimPackage = with pkgs.vimPlugins; { | ||
# # loaded on launch | ||
# start = [ emmet-vim ]; | ||
# # manually loadable by calling `:packadd $plugin-name` | ||
# opt = [ ]; | ||
# }; | ||
# }; | ||
#}; | ||
#environment.systemPackages = with pkgs; [ nodejs ]; | ||
} |
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,3 +1,4 @@ | ||
{ | ||
kanashimia.xmonad.enable = true; | ||
kanashimia.themes.xresources.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
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 was deleted.
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ pkgs, ... }: | ||
|
||
{ | ||
fonts.fontconfig.defaultFonts.emoji = [ | ||
"Twitter Color Emoji" | ||
]; | ||
|
||
fonts.fonts = with pkgs; [ | ||
twemoji-color-font | ||
dejavu_fonts | ||
gyre-fonts | ||
liberation_ttf | ||
xorg.fontmiscmisc | ||
xorg.fontcursormisc | ||
unifont | ||
noto-fonts-cjk | ||
fira-code | ||
]; | ||
|
||
fonts.enableDefaultFonts = false; | ||
} |
Oops, something went wrong.