core: move kernel out of core profile

The boot options and packages moved from core are more appropriate in
graphical.
This commit is contained in:
Timothy DeHerrera 2020-07-16 15:15:13 -06:00
parent c1996b1722
commit a163cb6edb
No known key found for this signature in database
GPG Key ID: 8985725DB5B0C122
2 changed files with 16 additions and 15 deletions

View File

@ -8,16 +8,6 @@ in {
imports = [ ../local/locale.nix ]; imports = [ ../local/locale.nix ];
boot = {
kernelPackages = pkgs.linuxPackages_latest;
tmpOnTmpfs = true;
kernel.sysctl."kernel.sysrq" = 1;
};
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [
@ -31,11 +21,9 @@ in {
gotop gotop
gptfdisk gptfdisk
iputils iputils
manpages
moreutils moreutils
nmap nmap
ripgrep ripgrep
stdmanpages
utillinux utillinux
whois whois
]; ];

View File

@ -7,7 +7,18 @@ in {
hardware.opengl.driSupport = true; hardware.opengl.driSupport = true;
hardware.pulseaudio.enable = true; hardware.pulseaudio.enable = true;
boot = {
kernelPackages = pkgs.linuxPackages_latest;
tmpOnTmpfs = true;
kernel.sysctl."kernel.sysrq" = 1;
};
environment = { environment = {
etc = { etc = {
"xdg/gtk-3.0/settings.ini" = { "xdg/gtk-3.0/settings.ini" = {
text = '' text = ''
@ -37,14 +48,12 @@ in {
}; };
systemPackages = with pkgs; [ systemPackages = with pkgs; [
pulsemixer
adapta-gtk-theme adapta-gtk-theme
cursor cursor
dzen2 dzen2
feh feh
ffmpeg-full ffmpeg-full
firefox firefox
qt5.qtgraphicaleffects
gnome3.adwaita-icon-theme gnome3.adwaita-icon-theme
gnome3.networkmanagerapplet gnome3.networkmanagerapplet
gnome-themes-extra gnome-themes-extra
@ -52,10 +61,14 @@ in {
imlib2 imlib2
librsvg librsvg
libsForQt5.qtstyleplugins libsForQt5.qtstyleplugins
manpages
papirus-icon-theme papirus-icon-theme
pulsemixer
qt5.qtgraphicaleffects
sddm-chili sddm-chili
zathura stdmanpages
xsel xsel
zathura
]; ];
}; };