furthre config on laptop

This commit is contained in:
2025-07-14 15:12:21 +02:00
parent 5b2b64611e
commit e2f428bc64
54 changed files with 1479 additions and 87 deletions
+44
View File
@@ -0,0 +1,44 @@
{ config, pkgs, ... }:
{
system.stateVersion = "25.05";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
boot.loader.systemd-boot.configurationLimit = 10;
# time and localization
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_DE.UTF-8";
LC_IDENTIFICATION = "de_DE.UTF-8";
LC_MEASUREMENT = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8";
LC_NUMERIC = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# networking
networking.networkmanager.enable = true;
networking.firewall.enable = true;
services.openssh.enable = true;
environment.systemPackages = with pkgs; [
# basics
lshw
git
wget
vim
neovim
# terminal related
alacritty
ranger
htop
];
}