Commented out monoid due to build issues
This commit is contained in:
parent
48e662f27a
commit
ba04cc1267
|
@ -37,7 +37,7 @@
|
||||||
# Use the GRUB 2 boot loader.
|
# Use the GRUB 2 boot loader.
|
||||||
boot.loader.grub.enable = true;
|
boot.loader.grub.enable = true;
|
||||||
boot.loader.grub.version = 2;
|
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.kernel.sysctl."net.ipv4.ip_forward" = "1";
|
||||||
boot.extraModprobeConfig = "options kvm_intel nested=1";
|
boot.extraModprobeConfig = "options kvm_intel nested=1";
|
||||||
|
|
||||||
|
@ -45,6 +45,12 @@
|
||||||
hostName = "dionach"; # Define your hostname.
|
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:
|
# List packages installed in system profile. To search, run:
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
aspell # Required for spell checking in weechat
|
aspell # Required for spell checking in weechat
|
||||||
|
@ -59,7 +65,6 @@
|
||||||
chromium
|
chromium
|
||||||
clang
|
clang
|
||||||
ddrescue
|
ddrescue
|
||||||
dejavu_fonts
|
|
||||||
docutils # Python Documentation Utilities
|
docutils # Python Documentation Utilities
|
||||||
electrum # Bitcoin wallet
|
electrum # Bitcoin wallet
|
||||||
emacs25-nox # Emacs, no X11
|
emacs25-nox # Emacs, no X11
|
||||||
|
@ -68,7 +73,6 @@
|
||||||
fd # A simple, fast and user-friendly alternative to find
|
fd # A simple, fast and user-friendly alternative to find
|
||||||
ffmpeg-full # record, convert and stream audio and video
|
ffmpeg-full # record, convert and stream audio and video
|
||||||
file
|
file
|
||||||
fira-code # Monospace font with programming ligatures
|
|
||||||
firefox
|
firefox
|
||||||
gcc
|
gcc
|
||||||
gimp
|
gimp
|
||||||
|
@ -86,7 +90,6 @@
|
||||||
libreoffice-fresh # Libreoffice - fresh version
|
libreoffice-fresh # Libreoffice - fresh version
|
||||||
lxmenu-data
|
lxmenu-data
|
||||||
mkpasswd
|
mkpasswd
|
||||||
monoid # Customisable coding font with alternates, ligatures and contextual positioning
|
|
||||||
mp3info # MP3 tag editor / query tool
|
mp3info # MP3 tag editor / query tool
|
||||||
mpd
|
mpd
|
||||||
mplayer
|
mplayer
|
||||||
|
@ -96,6 +99,7 @@
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
obs-studio # Free and open source software for video recording and live streaming
|
obs-studio # Free and open source software for video recording and live streaming
|
||||||
openjdk8
|
openjdk8
|
||||||
|
openssl # A cryptographic library that implements the SSL and TLS protocols
|
||||||
p7zip
|
p7zip
|
||||||
pandoc
|
pandoc
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
@ -137,7 +141,7 @@
|
||||||
zlib
|
zlib
|
||||||
zlib.dev
|
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
|
# compatible, in order to avoid breaking some software such as database
|
||||||
# servers. You should change this only after NixOS release notes say you
|
# servers. You should change this only after NixOS release notes say you
|
||||||
# should.
|
# should.
|
||||||
system.stateVersion = "18.03"; # Did you read the comment?
|
system.stateVersion = "20.03"; # Did you read the comment?
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue