2022-10-31 00:14:41 +00:00
|
|
|
{ inputs, globals, ... }:
|
|
|
|
|
|
|
|
with inputs;
|
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-11-03 01:29:14 +00:00
|
|
|
gui.enable = true;
|
|
|
|
theme = {
|
2022-11-05 17:41:09 +00:00
|
|
|
colors = (import ../../modules/colorscheme/gruvbox).light;
|
|
|
|
dark = false;
|
2022-06-20 03:44:29 +00:00
|
|
|
};
|
2022-11-03 01:29:14 +00:00
|
|
|
wallpaper = "${wallpapers}/gruvbox/road.jpg";
|
|
|
|
gtk.theme.name = nixpkgs.lib.mkDefault "Adwaita-dark";
|
2022-11-03 01:47:11 +00:00
|
|
|
passwordHash = nixpkgs.lib.fileContents ../../private/password.sha512;
|
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
|
2022-11-03 01:29:14 +00:00
|
|
|
../../modules/applications/media.nix
|
|
|
|
../../modules/applications/firefox.nix
|
|
|
|
../../modules/applications/kitty.nix
|
2022-11-03 02:15:29 +00:00
|
|
|
../../modules/applications/1password.nix
|
2022-11-03 01:29:14 +00:00
|
|
|
../../modules/applications/discord.nix
|
|
|
|
../../modules/applications/nautilus.nix
|
2022-11-03 02:15:29 +00:00
|
|
|
../../modules/applications/obsidian.nix
|
2022-10-30 17:57:14 +00:00
|
|
|
../../modules/mail/default.nix
|
2022-11-03 02:15:29 +00:00
|
|
|
../../modules/gaming/steam.nix
|
|
|
|
../../modules/gaming/legendary.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-06-04 15:24:40 +00:00
|
|
|
../../modules/services/mullvad.nix
|
2022-06-27 02:08:17 +00:00
|
|
|
../../modules/programming/nix.nix
|
2022-05-08 20:02:13 +00:00
|
|
|
];
|
|
|
|
}
|