Created basic NixOS and home-manager flake

This commit is contained in:
Bo⋆˚✿˖° 2025-09-01 13:36:09 +02:00
parent 17687db113
commit 06e98520af
9 changed files with 420 additions and 0 deletions

7
modules/nixos/gnome.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
# Enables the GNOME DE and GDM DM
services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true;
}