Verzeichnis Struktur aufgeräumt
This commit is contained in:
Executable
+35
@@ -0,0 +1,35 @@
|
||||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page, on
|
||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# imports =
|
||||
# [
|
||||
# ];
|
||||
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver.enable = true;
|
||||
services.displayManager.gdm.enable = true;
|
||||
services.desktopManager.gnome.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
services.xserver.xkb.layout = "de";
|
||||
# services.xserver.xkb.options = "eurosign:e,caps:escape";
|
||||
|
||||
programs.dconf.enable = true;
|
||||
programs.bash.enable = true;
|
||||
|
||||
# Enable gnome-settings-daemon udev rules
|
||||
services.udev.packages = with pkgs; [
|
||||
gnome-settings-daemon
|
||||
];
|
||||
|
||||
|
||||
environment.gnome.excludePackages = with pkgs; [
|
||||
gnome-tour
|
||||
gnome-music
|
||||
epiphany
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user