dotfiles/hosts/desktop/default.nix

46 lines
1.4 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-09-17 21:15:31 -04:00
# Set registry to flake packages, used for nix X commands
2022-09-17 21:33:57 -04:00
nix.registry.nixpkgs.flake = nixpkgs;
2022-10-16 14:20:50 +00:00
identityFile = "/home/${globals.user}/.ssh/id_ed25519";
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;
wallpaper = "${wallpapers}/gruvbox/road.jpg";
gtk.theme = { name = "Adwaita-dark"; };
};
colorscheme = (import ../../modules/colorscheme/gruvbox);
2022-06-19 23:44:29 -04:00
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
2022-07-25 23:15:26 -04:00
../../modules/nixos
2022-06-13 23:43:49 -04:00
../../modules/graphical
../../modules/gaming
../../modules/applications
2022-07-25 23:15:26 -04:00
../../modules/mail/himalaya.nix
2022-07-25 23:36:06 -04:00
../../modules/repositories/notes.nix
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-06-26 22:08:17 -04:00
../../modules/programming/nix.nix
2022-07-04 19:17:58 -04:00
../../modules/programming/haskell.nix
2022-05-08 16:02:13 -04:00
];
}