From 81a564fe23eaf82412080d779b3beabe35f92847 Mon Sep 17 00:00:00 2001 From: ingressy Date: Sat, 16 May 2026 18:34:53 +0000 Subject: [PATCH] =?UTF-8?q?configuration.nix=20gel=C3=B6scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- configuration.nix | 77 ----------------------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 configuration.nix diff --git a/configuration.nix b/configuration.nix deleted file mode 100644 index f4e06cf..0000000 --- a/configuration.nix +++ /dev/null @@ -1,77 +0,0 @@ -{ config, pkgs, ... }: - -{ - imports = - [ # Include the results of the hardware scan. - ./hardware-configuration.nix - ]; - - # Bootloader. - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; - - # Use latest kernel. - boot.kernelPackages = pkgs.linuxPackages_latest; - - networking.hostName = "yogurt"; # Define your hostname. - networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - - # Enable networking - networking.networkmanager.enable = true; - - # Set your time zone. - time.timeZone = "Europe/Berlin"; - - # Select internationalisation properties. - 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"; - }; - - # Configure keymap in X11 - services.xserver.xkb = { - layout = "de"; - variant = ""; - }; - - # Configure console keymap - console.keyMap = "de"; - - # Define a user account. Don't forget to set a password with ‘passwd’. - users.users.floppy = { - isNormalUser = true; - description = "floppy"; - extraGroups = [ "networkmanager" "wheel" ]; - packages = with pkgs; []; - }; - - # Allow unfree packages - nixpkgs.config.allowUnfree = true; - - system.stateVersion = "25.11"; - - #programs - environment.systemPackages = with pkgs; [ - uwsm - kitty - firefox - ]; - - programs.hyprland={ - enable = true; - withUWSM = true; - xwayland.enable = true; - }; - hardware.graphics.enable = true; - programs.regreet.enable = true; - programs.uwsm.enable = true; -} \ No newline at end of file