This commit is contained in:
TheWanderingCrow 2025-05-27 13:36:33 -04:00
parent 79e25fcdc8
commit 579365f2a8
4 changed files with 48 additions and 0 deletions

View file

@ -17,6 +17,7 @@
- Currently not using any darwin hosts - Currently not using any darwin hosts
- `nixos` - machine specific configurations for NixOS-based hosts - `nixos` - machine specific configurations for NixOS-based hosts
- `Parzival` - Primary Box - Ryzen 5 7600 - 32GB DDR5 - RX 7800 XT - `Parzival` - Primary Box - Ryzen 5 7600 - 32GB DDR5 - RX 7800 XT
- `Incarceron` - Work issued framework 13 - AMD Ryzen 7 7840U - 32GB DDR5
- `home/<user>` - Home-manager configurations, built automatically during host - `home/<user>` - Home-manager configurations, built automatically during host
rebuilds. rebuilds.
- `common` - Shared home-manager configurations consumed the user's machine - `common` - Shared home-manager configurations consumed the user's machine

View file

@ -0,0 +1,16 @@
{
lib,
pkgs,
disk ? "/dev/vda",
withSwap ? false,
swapSize,
config,
...
}: {
disko.devices = {
disk = {
disk0 = {
};
};
};
}

View file

@ -0,0 +1,31 @@
#################################
# #
# Incarceron - Laptop #
# NixOS running on Framework 13 #
# #
#################################
{
inputs,
lib,
pkgs,
...
}: {
imports = lib.flatten [
# Hardware
./hardware-configuration.nix # I want to use factor if possible
# Disks
inputs.disko.nixosModules.disko
# Misc
# inputs.stylix.nixosModules.stylix
(map lib.custom.relativeToRoot [
# Required configs
"hosts/common/core"
# Optional configs
"hosts/common/optional/keyd.nix"
])
];
}