dotfiles/hosts/desktop/default.nix

33 lines
891 B
Nix
Raw Normal View History

2022-05-08 20:02:13 +00:00
{ nixpkgs, home-manager, nur, globals, ... }:
nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { };
modules = [
globals
{
networking.hostName = "desktop";
gui.enable = true;
gui.compositor.enable = true;
}
home-manager.nixosModules.home-manager
{ nixpkgs.overlays = [ nur.overlay ]; }
./hardware-configuration.nix
../common.nix
../../modules/hardware
../../modules/system
../../modules/desktop
../../modules/shell
../../modules/gaming
../../modules/services/keybase.nix
2022-05-10 02:55:10 +00:00
../../modules/services/gnupg.nix
2022-05-08 20:02:13 +00:00
../../modules/applications/firefox.nix
../../modules/applications/alacritty.nix
../../modules/applications/media.nix
../../modules/applications/1password.nix
../../modules/applications/discord.nix
../../modules/editor/neovim
../../modules/editor/notes.nix
];
}