upload af nix configs

This commit is contained in:
2026-07-12 14:39:07 +02:00
commit f4382c7a97
8 changed files with 189 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{ 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" ];
# OpenGL / GPU
hardware.opengl.enable = true;
system.stateVersion = "24.11";
}