extract gnome into module

This commit is contained in:
Vivian 2023-04-25 09:30:41 +02:00
parent 1d42925a43
commit 423a2ee604
12 changed files with 79 additions and 162 deletions

View file

@ -1,7 +1,4 @@
{ pkgs, config, lib, ... }: {
imports = [
./desktop-env.nix
];
{ pkgs, ... }: {
# Bootloader.
boot = {
kernelPackages = pkgs.linuxPackages_latest;
@ -17,6 +14,9 @@
};
};
# Enable my config for the gnome desktop environment
services.v.gnome.enable = true;
# Set your time zone.
time.timeZone = "Europe/Amsterdam";
@ -82,4 +82,9 @@
# Open ports in the firewall for Steam Remote Play
remotePlay.openFirewall = true;
};
# Networking
networking.networkmanager.enable = true;
networking.firewall.checkReversePath = false;
networking.firewall.enable = false;
}