Files
nix/configuration.nix
T

34 lines
734 B
Nix

{ config, pkgs, ... }: {
imports = [
./modules/apps
./modules/desktop
];
# System
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "nixos";
networking.networkmanager.enable = true;
time.timeZone = "Europe/Copenhagen";
i18n.defaultLocale = "da_DK.UTF-8";
# User
users.users.glennigen = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
shell = pkgs.fish;
};
# Nix
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Tillad unfree packages (Steam, 1Password, mfl.)
nixpkgs.config.allowUnfree = true;
# OpenGL / GPU
hardware.graphics.enable = true;
system.stateVersion = "24.11";
}