mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
31 lines
786 B
Nix
31 lines
786 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/hardware
|
|
../../modules/system
|
|
../../modules/graphical
|
|
../../modules/gaming
|
|
../../modules/applications
|
|
../../modules/services/keybase.nix
|
|
../../modules/services/gnupg.nix
|
|
../../modules/services/mullvad.nix
|
|
];
|
|
}
|