nixcfg/home/dustin-gnome.nix
2024-03-26 20:13:35 -04:00

13 lines
245 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./gnome ./common-gui.nix ];
home.username = "dustin";
home.homeDirectory = "/home/dustin";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
services.syncthing.enable = true;
}