2023-07-26 21:47:16 -05:00
|
|
|
{ pkgs, ... }:
|
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-11-10 08:22:20 -06:00
|
|
|
networking.enableIPv6 = false;
|
2023-05-19 08:56:51 -05:00
|
|
|
#systemd.oomd.enable = false;
|
2022-06-12 00:50:26 -05:00
|
|
|
greg.tailscale.enable = true;
|
2023-05-19 08:56:51 -05:00
|
|
|
greg.gnome.enable = true;
|
|
|
|
|
greg.kde.enable = false;
|
2023-07-26 21:47:16 -05:00
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
oathToolkit
|
|
|
|
|
];
|
2023-08-17 13:57:30 -05:00
|
|
|
fileSystems = {
|
|
|
|
|
"/boot" = {
|
|
|
|
|
device = "/dev/nvme0n1p1";
|
|
|
|
|
fsType = "auto";
|
|
|
|
|
};
|
|
|
|
|
"/windows" = {
|
|
|
|
|
device = "/dev/nvme0n1p3";
|
|
|
|
|
fsType = "ntfs-3g";
|
|
|
|
|
};
|
|
|
|
|
};
|
2022-04-27 11:23:11 -05:00
|
|
|
}
|