28 lines
579 B
Nix
28 lines
579 B
Nix
|
|
{ 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";
|
||
|
|
}
|