Finally switch to flakes.

This commit is contained in:
Jimbo 2024-08-24 22:16:51 -04:00
parent a90e09db74
commit 5e0b713756
116 changed files with 5443 additions and 3 deletions

36
nixos/desktop.nix Normal file
View file

@ -0,0 +1,36 @@
{
imports = [
# Base configs
./modules/base.nix
./users/jimbo.nix
# Desktop only
./desktop/misc.nix
./desktop/sway.nix
./desktop/printing.nix
./desktop/gaming.nix
./desktop/pipewire.nix
./desktop/bluetooth.nix
./desktop/firewall.nix
./desktop/fonts.nix
# Modules
./modules/security.nix
./modules/networking.nix
# Hardware
./hardware/machines/desktop.nix
./hardware/nvidia.nix
./hardware/opengl.nix
# Services
./services/openssh.nix
./services/virtualisation.nix
./services/udev.nix
./services/sunshine.nix
./services/mpd.nix
];
services.openssh.ports = [2211];
networking.hostName = "JimNixDesktop";
}