2022-06-20 03:44:29 +00:00
|
|
|
{ nixpkgs, home-manager, nur, globals, wallpapers, ... }:
|
2022-05-08 20:02:13 +00:00
|
|
|
|
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";
|
2022-05-19 12:48:23 +00:00
|
|
|
nixpkgs.overlays = [ nur.overlay ];
|
2022-09-18 01:15:31 +00:00
|
|
|
# Set registry to flake packages, used for nix X commands
|
2022-09-18 01:33:57 +00:00
|
|
|
nix.registry.nixpkgs.flake = nixpkgs;
|
2022-10-16 14:20:50 +00:00
|
|
|
identityFile = "/home/${globals.user}/.ssh/id_ed25519";
|
2022-05-22 23:43:46 +00:00
|
|
|
gaming.steam = true;
|
2022-05-28 14:34:00 +00:00
|
|
|
gaming.legendary = true;
|
2022-06-20 03:44:29 +00:00
|
|
|
gui = {
|
|
|
|
enable = true;
|
|
|
|
compositor.enable = true;
|
|
|
|
wallpaper = "${wallpapers}/gruvbox/road.jpg";
|
|
|
|
gtk.theme = { name = "Adwaita-dark"; };
|
|
|
|
};
|
2022-09-09 21:16:13 +00:00
|
|
|
colorscheme = (import ../../modules/colorscheme/gruvbox);
|
2022-06-20 03:44:29 +00:00
|
|
|
passwordHash =
|
|
|
|
"$6$PZYiMGmJIIHAepTM$Wx5EqTQ5GApzXx58nvi8azh16pdxrN6Qrv1wunDlzveOgawitWzcIxuj76X9V868fsPi/NOIEO8yVXqwzS9UF.";
|
2022-05-08 20:02:13 +00:00
|
|
|
}
|
2022-06-20 03:44:29 +00:00
|
|
|
|
2022-05-08 20:02:13 +00:00
|
|
|
./hardware-configuration.nix
|
|
|
|
../common.nix
|
2022-06-14 03:43:49 +00:00
|
|
|
../../modules/hardware
|
2022-07-26 03:15:26 +00:00
|
|
|
../../modules/nixos
|
2022-06-14 03:43:49 +00:00
|
|
|
../../modules/graphical
|
|
|
|
../../modules/gaming
|
|
|
|
../../modules/applications
|
2022-10-30 17:57:14 +00:00
|
|
|
../../modules/mail/default.nix
|
2022-07-26 03:36:06 +00:00
|
|
|
../../modules/repositories/notes.nix
|
2022-05-08 20:02:13 +00:00
|
|
|
../../modules/services/keybase.nix
|
2022-05-10 02:55:10 +00:00
|
|
|
../../modules/services/gnupg.nix
|
2022-06-04 15:24:40 +00:00
|
|
|
../../modules/services/mullvad.nix
|
2022-06-27 02:08:17 +00:00
|
|
|
../../modules/programming/nix.nix
|
2022-07-04 23:17:58 +00:00
|
|
|
../../modules/programming/haskell.nix
|
2022-05-08 20:02:13 +00:00
|
|
|
];
|
|
|
|
}
|