first try

This commit is contained in:
twoneis 2023-11-12 19:38:02 +01:00
parent 9a43edcd92
commit 3f28ff67e3
26 changed files with 664 additions and 33 deletions

View file

@ -2,13 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs }: {
imports =
[ # Include the results of the hardware scan.
./packages.nix
];
{ pkgs, ... }: {
# Enable nix flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
@ -49,13 +43,6 @@
# Remove XTerm
services.xserver.excludePackages = [ pkgs.xterm ];
# Enable the GNOME Desktop Environment.
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
# Don't pull unnecessary packages
services.gnome.core-utilities.enable = false;
environment.gnome.excludePackages = [ pkgs.gnome-tour ];
# Configure keymap in X11
services.xserver = {
layout = "us";

View file

@ -1,14 +0,0 @@
{ pkgs }: {
environment.systemPackages = with pkgs; [
alacritty
git
gh
man-pages
man-pages-posix
bottom
firefox
gnome.nautilus
vlc
image-roll
];
}