dotfiles/hosts/desktop/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

2022-06-19 23:44:29 -04:00
{ nixpkgs, home-manager, nur, globals, wallpapers, ... }:
2022-05-08 16:02:13 -04:00
2022-05-19 08:48:23 -04:00
# System configuration for my desktop
2022-05-08 16:02:13 -04:00
nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { };
modules = [
globals
2022-05-19 08:48:23 -04:00
home-manager.nixosModules.home-manager
2022-05-08 16:02:13 -04:00
{
networking.hostName = "desktop";
2022-05-19 08:48:23 -04:00
nixpkgs.overlays = [ nur.overlay ];
2022-05-22 19:43:46 -04:00
gaming.steam = true;
2022-05-28 10:34:00 -04:00
gaming.leagueoflegends = true;
gaming.legendary = true;
2022-06-19 23:44:29 -04:00
gui = {
enable = true;
compositor.enable = true;
2022-06-19 23:54:16 -04:00
colorscheme = (import ../../modules/colorscheme/gruvbox);
2022-06-19 23:44:29 -04:00
wallpaper = "${wallpapers}/gruvbox/road.jpg";
gtk.theme = { name = "Adwaita-dark"; };
};
passwordHash =
"$6$PZYiMGmJIIHAepTM$Wx5EqTQ5GApzXx58nvi8azh16pdxrN6Qrv1wunDlzveOgawitWzcIxuj76X9V868fsPi/NOIEO8yVXqwzS9UF.";
2022-05-08 16:02:13 -04:00
}
2022-06-19 23:44:29 -04:00
2022-05-08 16:02:13 -04:00
./hardware-configuration.nix
../common.nix
2022-06-13 23:43:49 -04:00
../../modules/hardware
../../modules/system
../../modules/graphical
../../modules/gaming
../../modules/applications
2022-05-08 16:02:13 -04:00
../../modules/services/keybase.nix
2022-05-09 22:55:10 -04:00
../../modules/services/gnupg.nix
2022-06-04 11:24:40 -04:00
../../modules/services/mullvad.nix
2022-05-08 16:02:13 -04:00
];
}