Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- { config, lib, pkgs, ... }:
- {
- imports = [ ./hardware-configuration.nix ];
- boot.loader.grub.enable = true;
- boot.loader.grub.device = "nodev";
- boot.loader.grub.efiSupport = true;
- boot.loader.grub.efiInstallAsRemovable = true;
- boot.loader.efi.efiSysMountPoint = "/boot";
- boot.loader.efi.canTouchEfiVariables = false;
- networking.hostName = "summercamp";
- networking.networkmanager.enable = true;
- time.timeZone = "Europe/Berlin";
- i18n.defaultLocale = "de_DE.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";
- };
- console.keyMap = "de-latin1-nodeadkeys";
- users.users = {
- sidney = {
- initialPassword = "s1";
- isNormalUser = true;
- description = "Sidney Streith";
- extraGroups = [ "networkmanager" "wheel" ];
- };
- };
- environment.systemPackages = with pkgs; [ git ];
- nix.settings.experimental-features = [ "nix-command" "flakes" ];
- nixpkgs.config.allowUnfree = true;
- system.stateVersion = "24.11";
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement