mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 14:26:33 +01:00
sperate boot into option
This commit is contained in:
parent
414c9bd0eb
commit
4feef7b1c1
9 changed files with 36 additions and 45 deletions
7
modules/boot/default.nix
Normal file
7
modules/boot/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./systemd
|
||||
];
|
||||
}
|
24
modules/boot/systemd/default.nix
Normal file
24
modules/boot/systemd/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
let cfg = config.jopejoe1.boot.systemd;
|
||||
in {
|
||||
options.jopejoe1.boot.systemd = {
|
||||
enable = lib.mkEnableOption "Enable Systemd boot";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
boot = {
|
||||
loader = {
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
configurationLimit = 10;
|
||||
editor = false;
|
||||
};
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
efiSysMountPoint = "/boot/efi";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -6,6 +6,7 @@
|
|||
./audio
|
||||
./auto-update
|
||||
./bluetooth
|
||||
./boot
|
||||
./events
|
||||
./kodi
|
||||
./local
|
||||
|
|
|
@ -67,6 +67,7 @@ in {
|
|||
|
||||
system.stateVersion = "24.05";
|
||||
services.openssh.enable = true;
|
||||
systemd.services.nix-daemon.serviceConfig.LimitNOFILE = lib.mkForce 1048576000;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -40,11 +40,4 @@
|
|||
};
|
||||
|
||||
powerManagement.cpuFreqGovernor = "ondemand";
|
||||
|
||||
programs = {
|
||||
git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
repo-sync.enable = true;
|
||||
jopejoe1.enable = true;
|
||||
root.enable = true;
|
||||
boot.systemd.enable = true;
|
||||
};
|
||||
|
||||
networking = {
|
||||
|
@ -55,17 +56,6 @@
|
|||
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxPackages_testing;
|
||||
loader = {
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
configurationLimit = 10;
|
||||
editor = false;
|
||||
};
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
efiSysMountPoint = "/boot/efi";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
@ -109,18 +99,11 @@
|
|||
xwayland.enable = true;
|
||||
kdeconnect.enable = true;
|
||||
gamemode.enable = true;
|
||||
git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
};
|
||||
};
|
||||
console = {
|
||||
enable = true;
|
||||
keyMap = "de";
|
||||
};
|
||||
|
||||
nix.settings.system-features =
|
||||
[ "gccarch-alderlake" "benchmark" "big-parallel" "kvm" "nixos-test" ];
|
||||
systemd.services.nix-daemon.serviceConfig.LimitNOFILE =
|
||||
lib.mkForce 1048576000;
|
||||
nix.settings.system-features = [ "gccarch-alderlake" "benchmark" "big-parallel" "kvm" "nixos-test" ];
|
||||
}
|
||||
|
|
|
@ -16,17 +16,10 @@
|
|||
jopejoe1.enable = true;
|
||||
nix.enable = true;
|
||||
root.enable = true;
|
||||
boot.systemd.enable = true;
|
||||
};
|
||||
|
||||
networking = { hostName = "tuny"; };
|
||||
boot.loader.grub.device = "/dev/sda";
|
||||
|
||||
programs = {
|
||||
git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [ mixxx ];
|
||||
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations. Please make changes
|
||||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, modulesPath, ... }:
|
||||
|
||||
{
|
||||
|
@ -28,13 +25,7 @@
|
|||
swapDevices =
|
||||
[{ device = "/dev/disk/by-uuid/8569ee66-b939-4ce8-a94a-dca7df5e301b"; }];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
# still possible to use this option, but it's recommended to use it in conjunction
|
||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.enp3s0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode =
|
||||
|
|
|
@ -50,8 +50,6 @@
|
|||
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
||||
loader = {
|
||||
generic-extlinux-compatible.enable = true;
|
||||
systemd-boot.configurationLimit = 10;
|
||||
systemd-boot.editor = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue