Commented out monoid due to build issues

This commit is contained in:
Craige McWhirter 2020-09-07 11:02:52 +10:00
parent 48e662f27a
commit ba04cc1267
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

View file

@ -37,7 +37,7 @@
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
boot.loader.grub.device = "/dev/nvme0n1"; # or "nodev" for efi only
boot.kernel.sysctl."net.ipv4.ip_forward" = "1";
boot.extraModprobeConfig = "options kvm_intel nested=1";
@ -45,6 +45,12 @@
hostName = "dionach"; # Define your hostname.
};
fonts.fonts = with pkgs; [
dejavu_fonts # A typeface family based on the Bitstream Vera fonts
fira-code # Monospace font with programming ligatures
#monoid # Customisable coding font with alternates, ligatures and contextual positioning
];
# List packages installed in system profile. To search, run:
environment.systemPackages = with pkgs; [
aspell # Required for spell checking in weechat
@ -59,7 +65,6 @@
chromium
clang
ddrescue
dejavu_fonts
docutils # Python Documentation Utilities
electrum # Bitcoin wallet
emacs25-nox # Emacs, no X11
@ -68,7 +73,6 @@
fd # A simple, fast and user-friendly alternative to find
ffmpeg-full # record, convert and stream audio and video
file
fira-code # Monospace font with programming ligatures
firefox
gcc
gimp
@ -86,7 +90,6 @@
libreoffice-fresh # Libreoffice - fresh version
lxmenu-data
mkpasswd
monoid # Customisable coding font with alternates, ligatures and contextual positioning
mp3info # MP3 tag editor / query tool
mpd
mplayer
@ -96,6 +99,7 @@
nextcloud-client
obs-studio # Free and open source software for video recording and live streaming
openjdk8
openssl # A cryptographic library that implements the SSL and TLS protocols
p7zip
pandoc
pavucontrol
@ -137,7 +141,7 @@
zlib
zlib.dev
(
import /home/craige/Forge/mio-ops/roles/vim.nix
import ../roles/vim.nix
)
];
@ -210,6 +214,6 @@
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "18.03"; # Did you read the comment?
system.stateVersion = "20.03"; # Did you read the comment?
}