Files
nixos/hosts/jude/default.nix
T

16 lines
239 B
Nix
Raw Normal View History

2022-04-27 11:23:11 -05:00
{ ... }:
{
imports = [
./boot.nix
./hardware-configuration.nix
2022-05-02 08:53:46 -05:00
./podman.nix
2022-06-03 15:41:45 -05:00
./printing.nix
2022-05-04 13:52:38 -05:00
./virt.nix
2022-04-27 11:23:11 -05:00
];
2022-08-31 00:27:30 -05:00
programs.steam.enable = true;
2022-04-27 11:23:11 -05:00
networking.hostName = "jude";
2022-06-12 00:50:26 -05:00
greg.tailscale.enable = true;
2022-04-29 10:58:31 -05:00
greg.gnome.enable= true;
2022-04-27 11:23:11 -05:00
}