dotfiles/hosts/desktop/default.nix
2022-05-28 10:34:00 -04:00

25 lines
611 B
Nix

{ nixpkgs, home-manager, nur, globals, ... }:
# System configuration for my desktop
nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { };
modules = [
globals
home-manager.nixosModules.home-manager
{
networking.hostName = "desktop";
gui.enable = true;
gui.compositor.enable = true;
nixpkgs.overlays = [ nur.overlay ];
gaming.steam = true;
gaming.leagueoflegends = true;
gaming.legendary = true;
}
./hardware-configuration.nix
../common.nix
../../modules/services/keybase.nix
../../modules/services/gnupg.nix
];
}