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:
parent
c1996b1722
commit
a163cb6edb
2 changed files with 16 additions and 15 deletions
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue