[NixOS] Add internet-computer.nix

This commit is contained in:
Ivan Malison 2021-07-10 15:28:43 -06:00
parent bedee0b051
commit 5a005c664c
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
2 changed files with 36 additions and 0 deletions

29
nixos/fonts.nix Normal file
View File

@ -0,0 +1,29 @@
{ pkgs }:
{
# Enable the gtk icon cache
gtk.iconCache.enable = true;
fonts = {
fonts = with pkgs; [
dejavu_fonts
emojione
fira-mono
font-awesome-ttf
noto-fonts-emoji
roboto
source-code-pro
source-sans-pro
source-serif-pro
# twemoji-color-font
];
fontconfig = {
allowBitmaps = true;
useEmbeddedBitmaps = true;
defaultFonts = {
monospace = [ "Source Code Pro" ];
sansSerif = [ "Roboto" ];
serif = [ "Source Serif Pro" ];
};
};
};
}

View File

@ -0,0 +1,7 @@
{ pkgs }:
{
environment.systemPackages = with pkgs; [
ic-keysmith
quill
];
}