forked from KptltD00M/nixy
4e28ca9b48
- Removed USBGuard configuration and its associated comments from configuration.nix. - Cleaned up flake.nix by removing unnecessary overlays. - Updated home.nix to remove references to Helium and Proton, and added Steam. - Deleted secrets.default.nix and secrets.secrets.yaml files for security reasons. - Removed Omen laptop specific configuration from omen.nix. - Deleted vencord.nix as it is no longer needed.
29 lines
495 B
Nix
29 lines
495 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;
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|