Emacs
This commit is contained in:
parent
4ec09b952b
commit
6cc1602529
2 changed files with 9 additions and 8 deletions
|
@ -1,19 +1,14 @@
|
||||||
# Edit this configuration file to define what should be installed on
|
# Edit this configuration file to define what should be installed on
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
{
|
{pkgs, ...}: {
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
libs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
boot.initrd.systemd = {
|
boot.initrd.systemd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
tpm2 = {enable = true;};
|
tpm2 = {enable = true;};
|
||||||
dbus = {enable = true;};
|
dbus = {enable = true;};
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_cachyos;
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
|
||||||
boot.kernelParams = [
|
boot.kernelParams = [
|
||||||
"default_hugepagesz=1G"
|
"default_hugepagesz=1G"
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
inherit
|
inherit
|
||||||
(pkgs)
|
(pkgs)
|
||||||
wget2
|
wget2
|
||||||
|
emacs30-pgtk
|
||||||
alacritty
|
alacritty
|
||||||
firefox
|
firefox
|
||||||
vesktop
|
vesktop
|
||||||
|
@ -19,4 +20,9 @@
|
||||||
"libvirtd"
|
"libvirtd"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
services.emacs = {
|
||||||
|
enable = true;
|
||||||
|
defaultEditor = true;
|
||||||
|
startWithGraphical = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue