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 ];
boot = {
kernelPackages = pkgs.linuxPackages_latest;
tmpOnTmpfs = true;
kernel.sysctl."kernel.sysrq" = 1;
};
environment = {
systemPackages = with pkgs; [
@ -31,11 +21,9 @@ in {
gotop
gptfdisk
iputils
manpages
moreutils
nmap
ripgrep
stdmanpages
utillinux
whois
];

View File

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