{ description = "NixOS system flake."; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.11"; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = inputs@{ self, nixpkgs, nixpkgs-stable, home-manager, ... }: let system = "x86_64-linux"; userName = "nate"; hostName = "winmax"; pkgs = import nixpkgs { legacyPackages = system; # smh steam config.allowUnfree = true; }; stablePkgs = import nixpkgs-stable { legacyPackages = system; config.allowUnfree = true; }; in { nixosConfigurations = { nixServer = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs; }; modules = [ ./nixos/configuration.nix inputs.home-manager.nixosModules.default ]; }; nixSway = nixpkgs.lib.nixosSystem { # Pass args to sway_configuration specialArgs = { inherit inputs; inherit userName; inherit hostName; }; modules = [ ./nixos/sway_configuration.nix # Setup home manager home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.users.${userName} = import ./modules/home-manager/home.nix; # Pass args to home.nix home-manager.extraSpecialArgs = { inherit inputs; inherit userName; inherit stablePkgs; inherit hostName; }; } ]; }; }; }; }