33 lines
1 KiB
Nix
33 lines
1 KiB
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ config, pkgs, ... }:
|
||
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
];
|
||
|
||
# Use the systemd-boot EFI boot loader.
|
||
services.xserver.enable = true;
|
||
services.xserver.desktopManager.lxqt.enable = true;
|
||
services.xserver.displayManager.gdm.enable = true;
|
||
programs.firefox.enable = true;
|
||
|
||
networking.hostName = "lime";
|
||
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
||
|
||
# Set your time zone.
|
||
time.timeZone = "Europe/Amsterdam";
|
||
|
||
|
||
# Enable touchpad support (enabled default in most desktopManager).
|
||
services.xserver.libinput.enable = true;
|
||
|
||
system.stateVersion = "22.11"; # Did you read the comment?
|
||
|
||
programs.git.enable = true;
|
||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||
}
|