This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/systems/default.nix

22 lines
347 B
Nix
Raw Normal View History

2024-03-24 16:15:15 +01:00
{ config, lib, pkgs, ... }: {
# imports
imports = [
./bootloader.nix
./desktop.nix
./hardware.nix
./locality.nix
./networking.nix
./nix.nix
./packages.nix
./security.nix
./simon.nix
./sound.nix
2024-04-05 22:32:43 +02:00
./steam.nix
2024-03-28 16:26:01 +01:00
./virtualisation.nix
2024-03-24 16:15:15 +01:00
];
# system state version
system.stateVersion = "23.11";
}