[NixOS] Add internet-computer.nix
This commit is contained in:
parent
bedee0b051
commit
5a005c664c
29
nixos/fonts.nix
Normal file
29
nixos/fonts.nix
Normal 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" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
7
nixos/internet-computer.nix
Normal file
7
nixos/internet-computer.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{ pkgs }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
ic-keysmith
|
||||||
|
quill
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user