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