This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/env/nix/machines/third.nix

18 lines
405 B
Nix
Raw Normal View History

2020-10-24 10:03:34 -05:00
{ config, pkgs, ... }: {
2020-10-24 09:06:34 -05:00
imports = [
../profiles/laptop.nix
../modules/systemd-boot-efi.nix
../modules/intel.nix
2020-10-24 10:03:34 -05:00
../modules/docker.nix
../modules/network-manager.nix
../modules/bluetooth.nix
../modules/pulseaudio.nix
../modules/de/sway.nix
../modules/users/daniel.nix
../modules/users/valerie.nix
2020-10-24 09:06:34 -05:00
];
2020-10-24 10:03:34 -05:00
networking.hostName = "third.lyte.dev";
2020-10-24 09:06:34 -05:00
networking.firewall.enable = false;
}