i did something but i forgot

This commit is contained in:
lulusilly 2026-03-05 23:46:01 +00:00
parent 4e6480d9a0
commit d4df25abdf
27 changed files with 45 additions and 26 deletions

View file

@ -0,0 +1,27 @@
{ config, pkgs, inputs, ... }:
{
imports =
[
./hardware-configuration.nix
../../modules/kanata/kanata.nix
../../modules/efi.nix
../../modules/laptop.nix
../../modules/hypr.nix
../../modules/virt.nix
];
fileSystems."/media/music" = {
device = "/dev/disk/by-uuid/dcd8c4de-96af-4d71-badb-5ed63b7c2c39";
fsType = "xfs";
};
fileSystems."/media/vm" = {
device = "/dev/disk/by-uuid/9678bbf2-bf4d-43bb-b0e4-d7cb68915da1";
fsType = "xfs";
};
networking.hostName = "hilbert";
system.stateVersion = "25.11";
}