dotfiles/hosts/desktop/default.nix

25 lines
611 B
Nix
Raw Normal View History

2022-05-08 20:02:13 +00:00
{ nixpkgs, home-manager, nur, globals, ... }:
2022-05-19 12:48:23 +00:00
# System configuration for my desktop
2022-05-08 20:02:13 +00:00
nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { };
modules = [
globals
2022-05-19 12:48:23 +00:00
home-manager.nixosModules.home-manager
2022-05-08 20:02:13 +00:00
{
networking.hostName = "desktop";
gui.enable = true;
gui.compositor.enable = true;
2022-05-19 12:48:23 +00:00
nixpkgs.overlays = [ nur.overlay ];
2022-05-22 23:43:46 +00:00
gaming.steam = true;
2022-05-28 14:34:00 +00:00
gaming.leagueoflegends = true;
gaming.legendary = true;
2022-05-08 20:02:13 +00:00
}
./hardware-configuration.nix
../common.nix
../../modules/services/keybase.nix
2022-05-10 02:55:10 +00:00
../../modules/services/gnupg.nix
2022-05-08 20:02:13 +00:00
];
}