forked from KptltD00M/nixy
30 lines
527 B
Nix
30 lines
527 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
imports = [
|
|
# System configuration
|
|
../../nixos/audio.nix
|
|
../../nixos/bluetooth.nix
|
|
../../nixos/fonts.nix
|
|
../../nixos/home-manager.nix
|
|
../../nixos/nix.nix
|
|
../../nixos/systemd-boot.nix
|
|
../../nixos/tuigreet.nix
|
|
../../nixos/users.nix
|
|
../../nixos/utils.nix
|
|
../../nixos/hyprland.nix
|
|
|
|
../../nixos/steam.nix
|
|
|
|
# Machine-specific files
|
|
./hardware-configuration.nix
|
|
./variables.nix
|
|
|
|
];
|
|
|
|
home-manager.users."${config.var.username}" = import ./home.nix;
|
|
services.flatpak.enable = true;
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|