modularize config

This commit is contained in:
nicknase27
2026-07-26 12:26:38 +02:00
parent 5f85e3520b
commit a7ce2b4c71
7 changed files with 57 additions and 42 deletions
-37
View File
@@ -9,24 +9,8 @@
nix.settings.experimental-features = ["nix-command" "flakes"]; nix.settings.experimental-features = ["nix-command" "flakes"];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "Hermes";
networking.networkmanager.enable = true;
networking.nameservers = ["1.1.1.1" "1.0.0.1"];
time.timeZone = "Europe/Berlin"; time.timeZone = "Europe/Berlin";
users.users.nick = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = ["wheel"];
};
programs = { programs = {
zsh = { zsh = {
enable = true; enable = true;
@@ -36,27 +20,6 @@
}; };
}; };
environment.systemPackages = with pkgs; [
inputs.agenix.packages."${stdenv.hostPlatform.system}".default
neovim
wget
curl
git
fastfetch
rsync
starship
eza
net-tools
alejandra
nixd
yazi
dysk
tmux
btop
];
networking.firewall.enable = true;
age.identityPaths = [ age.identityPaths = [
"/etc/ssh/id_ed25519" "/etc/ssh/id_ed25519"
]; ];
-1
View File
@@ -1,7 +1,6 @@
{ {
config, config,
lib, lib,
pkgs,
modulesPath, modulesPath,
... ...
}: { }: {
+6
View File
@@ -0,0 +1,6 @@
{pkgs, ...}: {
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
}
+9 -4
View File
@@ -1,7 +1,12 @@
{ pkgs, lib, config, ... }:
{ {
imports = [ ...
./garbage-collection.nix }: {
imports = [
./garbage-collection.nix
./networking.nix
./packages.nix
./backups.nix ./backups.nix
]; ./users.nix
./boot.nix
];
} }
+15
View File
@@ -0,0 +1,15 @@
{...}: {
networking = {
hostName = "Hermes";
nameservers = ["1.1.1.1" "1.0.0.1"];
firewall = {
enable = true;
};
nftables = {
enable = true;
};
networkmanager = {
enable = true;
};
};
}
+20
View File
@@ -0,0 +1,20 @@
{pkgs, inputs, ...}: {
environment.systemPackages = with pkgs; [
inputs.agenix.packages."${stdenv.hostPlatform.system}".default
neovim
wget
curl
git
fastfetch
rsync
starship
eza
net-tools
alejandra
nixd
yazi
dysk
tmux
btop
];
}
+7
View File
@@ -0,0 +1,7 @@
{pkgs, ...}: {
users.users.nick = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = ["wheel"];
};
}