Gonna revert and modify the original flake, add back overlays from a shared file, and figure things out after

This commit is contained in:
Jimbo 2024-10-12 19:41:05 -04:00
parent 65f90a0bf3
commit 4ad26636a7
17 changed files with 116 additions and 14 deletions

View file

@ -0,0 +1,12 @@
{ ... }:
{
imports = [
../../../home
../../../home/users
../../../home/files
../../../home/settings
../../../home/programs
../../../home/sway
../../../home/utils
];
}

View file

@ -0,0 +1,17 @@
{ ... }:
{
imports = [
../../../system
../../../system/accounts
../../../system/desktop
../../../system/devices
../../../system/devices/networking/firewall/server
../../../system/programs
../../../system/services
];
networking.hostName = "firefly";
# Force Electron to use Wayland
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}

View file

@ -0,0 +1,14 @@
{ ... }:
{
imports = [
../../../home
../../../home/users
../../../home/programs/fastfetch
../../../home/programs/git
../../../home/programs/ncmpcpp
../../../home/programs/neovim
../../../home/programs/ranger
../../../home/programs/tmux
../../../home/utils/zsh
];
}

View file

@ -0,0 +1,17 @@
{ ... }:
{
imports = [
../../../system
../../../system/accounts
../../../system/devices/filesystems
../../../system/devices/networking
../../../system/devices/networking/firewall/server
../../../system/devices/networking/wireguard/server
../../../system/programs/git
../../../system/programs/security
../../../system/services/common
../../../system/services/server
];
networking.hostName = "cyberspark";
}