mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
14 lines
352 B
Nix
14 lines
352 B
Nix
# A common profile for desktop systems. Most of the configurations featured
|
|
# here should be enough in common to the typical desktop setups found on
|
|
# non-NixOS systems.
|
|
{
|
|
imports = [
|
|
./fonts.nix
|
|
./audio.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
# We'll just have the configuration stored as a backup.
|
|
environment.etc.nixos.source = ../../../../..;
|
|
}
|